Interface CopyPasteResults

interface CopyPasteResults {
    clear: (() => void);
    commands: CommandMap;
    copy: ((args?) => void);
    currentItem: DynamicClipboardItem;
    paste: ((args?) => void);
}

Hierarchy (view full)

Properties

clear: (() => void)

Type declaration

    • (): void
    • Returns void

commands: CommandMap
copy: ((args?) => void)

Type declaration

paste: ((args?) => void)

Type declaration