has.d.ts
61 lines
| 2.3 KiB
| video/mp2t
|
TypeScriptLexer
cin
|
r2 | declare namespace has { | ||
interface HasCache { | ||||
[feature: string]: any; | ||||
} | ||||
interface HasTestFunction { | ||||
/* TypeScript has no way of referring to the global scope see Microsoft/TypeScript#983 */ | ||||
(global?: any, doc?: Document, element?: Element): any; | ||||
} | ||||
interface Has { | ||||
/** | ||||
* Return the current value of the named feature. | ||||
* @param {string | number} name The name (if a string) or identifier (if an integer) of the feature to test. | ||||
*/ | ||||
(name: string | number): any; | ||||
(name: 'host-browser'): boolean; | ||||
(name: 'host-node'): any; | ||||
(name: 'host-rhino'): boolean; | ||||
(name: 'dom'): boolean; | ||||
(name: 'dojo-dom-ready-api'): 1; | ||||
(name: 'dojo-sniff'): 1; | ||||
// if host-browser is true | ||||
(name: 'dom-addeventlistener'): void | boolean; | ||||
(name: 'touch'): void | boolean; | ||||
(name: 'touch-events'): void | boolean; | ||||
(name: 'pointer-events'): void | boolean; | ||||
(name: 'MSPointer'): void | boolean; | ||||
(name: 'device-width'): void | number; | ||||
(name: 'dom-attributes-explicit'): void | boolean; | ||||
(name: 'dom-attributes-specified-flag'): void | boolean; | ||||
// dojo/_base/browser | ||||
(name: 'config-selectorEngine'): string; | ||||
cache: HasCache; | ||||
/** | ||||
* Register a new feature test for some named feature. | ||||
*/ | ||||
add(name: string | number, test: HasTestFunction, now?: boolean, force?: boolean): any; | ||||
add<T extends (Object | string | number | boolean | null | void)>(name: string | number, test: T, now?: boolean, force?: boolean): any; | ||||
/** | ||||
* Deletes the contents of the element passed to test functions. | ||||
*/ | ||||
clearElement(element: HTMLElement): HTMLElement; | ||||
/** | ||||
* Resolves id into a module id based on possibly-nested tenary expression that branches on has feature test value(s). | ||||
*/ | ||||
normalize(id: string, toAbsMid: Function): string; /* TODO: Align with loader api */ | ||||
/** | ||||
* Conditional loading of AMD modules based on a has feature test value. | ||||
*/ | ||||
load(id: string, parentRequire: Function, loaded: Function): void; /* TODO: Align with loader api */ | ||||
} | ||||
} | ||||
declare const has: has.Has; | ||||
export = has; | ||||