Undocumented

interface ClipboardDataReturn {
    data: SharedObject;
    datatype: string;
    params: {
        cut: boolean;
        srcObject?: any;
    };
}

Properties

Properties

Data passed from copy/cut operation

datatype: string

Type of data in data object, typically 'track'

params: {
    cut: boolean;
    srcObject?: any;
}

additional static (serializable) data passed from cut/copy action

Type declaration

  • cut: boolean

    Whether the data was cut instead of copied.

  • Optional srcObject?: any

    Undocumented