Interface SheetCopyPasteResults

interface SheetCopyPasteResults {
    clear: (() => void);
    commands: CommandMap;
    copy: ((args?) => void);
    currentItem: DynamicClipboardItem;
    overlays?: ((view) => ReactNode)[];
    paste: ((args?) => void);
}

Hierarchy (view full)

Properties

clear: (() => void)

Type declaration

    • (): void
    • Returns void

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

Type declaration

overlays?: ((view) => ReactNode)[]

Array of functions that return components to overlay

Type declaration

paste: ((args?) => void)

Type declaration