interface DocumentAndElementEventHandlers {
    oncopy: ((this, ev) => any);
    oncut: ((this, ev) => any);
    onpaste: ((this, ev) => any);
    addEventListener<K>(type, listener, options?): void;
    addEventListener(type, listener, options?): void;
    removeEventListener<K>(type, listener, options?): void;
    removeEventListener(type, listener, options?): void;
}

Hierarchy

Properties

oncopy: ((this, ev) => any)

Type declaration

oncut: ((this, ev) => any)

Type declaration

onpaste: ((this, ev) => any)

Type declaration

Methods

Generated using TypeDoc