Module: typedoc-types
Type Aliases
Manifest
Ƭ Manifest: Record<string, any>
StandardCallback
Ƭ StandardCallback<E, R>: (err: E, response?: R) => void
Type parameters
| Name | Type |
|---|---|
E | StandardError |
R | any |
Type declaration
▸ (err, response?): void
Parameters
| Name | Type |
|---|---|
err | E |
response? | R |
Returns
void
StandardError
Ƭ StandardError: Error | string | null | undefined
StandardErrorCallback
Ƭ StandardErrorCallback<R>: (err: StandardError, response?: R) => void
Type parameters
| Name | Type |
|---|---|
R | any |
Type declaration
▸ (err, response?): void
Parameters
| Name | Type |
|---|---|
err | StandardError |
response? | R |
Returns
void
StandardPromise
Ƭ StandardPromise<R>: Promise<{ data?: R ; err?: StandardError }>
Type parameters
| Name | Type |
|---|---|
R | any |