interface DocumentAndElementEventHandlers {
    oncopy: null | ((this, ev) => any);
    oncut: null | ((this, ev) => any);
    onpaste: null | ((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 (view full)

Properties

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

Type declaration

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

Type declaration

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

Type declaration

Methods

Generated using TypeDoc