A ClipboardActionProvider should allow access to the system clipboard

interface ClipboardProviderInterface {
    clear(): Promise<boolean>;
    copy(text): Promise<void>;
    hasText(): Promise<boolean>;
    paste(): Promise<string>;
}

Methods

Generated using TypeDoc