shadow-function
Version:
ioing lib - shadow Function, worker Function
143 lines (141 loc) • 2.32 kB
text/typescript
export default {
Node: [
'nodeName',
'nodeType',
'textContent'
],
Element: [
'style',
'onblur',
'onfocus',
'onscroll',
'offsetWidth',
'offsetHeight',
'clientWidth',
'clientHeight',
'innerText',
'setAttribute',
'removeAttribute',
'createTextNode',
'addEventListener',
'getElementsByTagName'
],
HTMLElement: [],
HTMLBodyElement: [],
HTMLDivElement: [],
HTMLUListElement: [],
HTMLLIElement: [],
HTMLVideoElement: [],
HTMLAudioElement: [],
HTMLSelectElement: [],
HTMLOptionElement: [],
HTMLInputElement: [],
HTMLSpanElement: [],
HTMLDListElement: [],
HTMLFontElement: [],
HTMLHeadingElement: [],
HTMLParagraphElement: [],
HTMLDocument: [
'documentElement',
'body'
],
Navigator: [
'appCodeName',
'appName',
'appVersion',
'language',
'languages',
'maxTouchPoints',
'onLine',
'platform',
'product',
'productSub',
'userAgent',
'vendor',
'vendorSub'
],
UserActivation: [
'hasBeenActive',
'isActive'
],
Promise: [
'then',
'catch',
'resolve'
],
Touch: [
'clientX',
'clientY',
'force',
'identifier',
'pageX',
'pageY',
'radiusX',
'radiusY',
'rotationAngle',
'screenX',
'screenY',
'target'
],
TouchEvent: [
'altKey',
'bubbles',
'cancelBubble',
'cancelable',
'changedTouches',
'composed',
'ctrlKey',
'currentTarget',
'defaultPrevented',
'detail',
'eventPhase',
'metaKey',
'returnValue',
'shiftKey',
'sourceCapabilities',
'targetTouches',
'timeStamp',
'touches',
'type',
'which'
],
MouseEvent: [
'altKey',
'bubbles',
'button',
'buttons',
'cancelBubble',
'cancelable',
'clientX',
'clientY',
'composed',
'ctrlKey',
'defaultPrevented',
'detail',
'eventPhase',
'fromElement',
'getModifierState',
'initMouseEvent',
'layerX',
'layerY',
'metaKey',
'movementX',
'movementY',
'offsetX',
'offsetY',
'pageX',
'pageY',
'relatedTarget',
'returnValue',
'screenX',
'screenY',
'shiftKey',
'sourceCapabilities',
'timeStamp',
'type',
'which',
'x',
'y'
]
}