UNPKG

mmir-lib

Version:

MMIR (Mobile Multimodal Interaction and Relay) library

140 lines (80 loc) 3.58 kB
**[mmir-lib 7.0.0-beta1](../README.md)** > [Globals](../README.md) / [mmir-lib](../modules/mmir_lib.md) / RequireJsDefine # Interface: RequireJsDefine ## Hierarchy * [Function](mmir_lib.requirejs.md#function) ↳ **RequireJsDefine** ## Index ### Properties * [Function](mmir_lib.requirejsdefine.md#function) * [arguments](mmir_lib.requirejsdefine.md#arguments) * [caller](mmir_lib.requirejsdefine.md#caller) * [length](mmir_lib.requirejsdefine.md#length) * [prototype](mmir_lib.requirejsdefine.md#prototype) ### Methods * [apply](mmir_lib.requirejsdefine.md#apply) * [bind](mmir_lib.requirejsdefine.md#bind) * [call](mmir_lib.requirejsdefine.md#call) * [toString](mmir_lib.requirejsdefine.md#tostring) ## Properties ### Function • **Function**: FunctionConstructor ___ ### arguments • **arguments**: any *Inherited from [RequireJs](mmir_lib.requirejs.md).[arguments](mmir_lib.requirejs.md#arguments)* ___ ### caller • **caller**: [Function](mmir_lib.requirejs.md#function) *Inherited from [RequireJs](mmir_lib.requirejs.md).[caller](mmir_lib.requirejs.md#caller)* ___ ### length • `Readonly` **length**: number *Inherited from [RequireJs](mmir_lib.requirejs.md).[length](mmir_lib.requirejs.md#length)* ___ ### prototype • **prototype**: any *Inherited from [RequireJs](mmir_lib.requirejs.md).[prototype](mmir_lib.requirejs.md#prototype)* ## Methods ### apply ▸ **apply**(`this`: [Function](mmir_lib.requirejs.md#function), `thisArg`: any, `argArray?`: any): any *Inherited from [RequireJs](mmir_lib.requirejs.md).[apply](mmir_lib.requirejs.md#apply)* Calls the function, substituting the specified object for the this value of the function, and the specified array for the arguments of the function. #### Parameters: Name | Type | Description | ------ | ------ | ------ | `this` | [Function](mmir_lib.requirejs.md#function) | - | `thisArg` | any | The object to be used as the this object. | `argArray?` | any | A set of arguments to be passed to the function. | **Returns:** any ___ ### bind ▸ **bind**(`this`: [Function](mmir_lib.requirejs.md#function), `thisArg`: any, ...`argArray`: any[]): any *Inherited from [RequireJs](mmir_lib.requirejs.md).[bind](mmir_lib.requirejs.md#bind)* For a given function, creates a bound function that has the same body as the original function. The this object of the bound function is associated with the specified object, and has the specified initial parameters. #### Parameters: Name | Type | Description | ------ | ------ | ------ | `this` | [Function](mmir_lib.requirejs.md#function) | - | `thisArg` | any | An object to which the this keyword can refer inside the new function. | `...argArray` | any[] | A list of arguments to be passed to the new function. | **Returns:** any ___ ### call ▸ **call**(`this`: [Function](mmir_lib.requirejs.md#function), `thisArg`: any, ...`argArray`: any[]): any *Inherited from [RequireJs](mmir_lib.requirejs.md).[call](mmir_lib.requirejs.md#call)* Calls a method of an object, substituting another object for the current object. #### Parameters: Name | Type | Description | ------ | ------ | ------ | `this` | [Function](mmir_lib.requirejs.md#function) | - | `thisArg` | any | The object to be used as the current object. | `...argArray` | any[] | A list of arguments to be passed to the method. | **Returns:** any ___ ### toString ▸ **toString**(): string *Inherited from [RequireJs](mmir_lib.requirejs.md).[toString](mmir_lib.requirejs.md#tostring)* Returns a string representation of a function. **Returns:** string