UNPKG

coc-webview

Version:

Vscode webview ported to coc.nvim

10 lines (9 loc) 583 B
/// <reference types="node" /> import { SpawnOptionsWithoutStdio } from 'child_process'; import { HelperLogger } from 'coc-helper'; export declare const config: () => import("coc.nvim").WorkspaceConfiguration; export declare const logger: HelperLogger; export declare const isURL: (uri: string) => boolean; export declare function copyToClipboard(content: string): Promise<void>; export declare const spawnCmdLine: (command: string, args: string[], options?: SpawnOptionsWithoutStdio | undefined) => Promise<void>; export declare function openExternalUri(fsPathOrURL: string): void;