Type Definitions
AsyncBinaryFunction(arg1, arg2) → {OpenSeadragon.Promise.<T>}
Represents an asynchronous function that:
Parameters:
| Name | Type | Description |
|---|---|---|
arg1 |
A | The first argument of type A. |
arg2 |
B | The second argument of type B. |
- Source:
Returns:
A promise that resolves to a value of type T.
- Type
- OpenSeadragon.Promise.<T>
AsyncNullaryFunction()
Represents an asynchronous function that takes no arguments and returns a promise of type T.
- Source:
AsyncUnaryFunction(arg) → {OpenSeadragon.Promise.<T>}
Represents an asynchronous function that:
Parameters:
| Name | Type | Description |
|---|---|---|
arg |
A | The single argument of type A. |
- Source:
Returns:
A promise that resolves to a value of type T.
- Type
- OpenSeadragon.Promise.<T>