Interface CopyClipboardArgument

interface CopyClipboardArgument {
    editMode?: EditMode<any>;
    isCut?: boolean;
    params?: any;
}

Properties

editMode?: EditMode<any>

When performing a copy the editMode type to use.

Default

'copy'
isCut?: boolean

Defaults to false

params?: any