HostPromise
kds-plugin-document / Exports / HostPromise
Interface: HostPromise<T>
代表异步操作的结果
The HostPromise class represents the eventual completion (or failure) of an asynchronous operation and its resulting value. NOTE: The promise passed from host cannot be chained.
Type parameters
| Name | 
|---|
T | 
Table of contents
Methods
Methods
catch
▸ catch(reject?): void
Parameters
| Name | Type | 
|---|---|
reject? | (error: any) => void | 
Returns
void
Defined in
api.d.ts:11558
then
▸ then(resolve?, reject?): void
Parameters
| Name | Type | 
|---|---|
resolve? | (value: T) => void | 
reject? | (error: any) => void | 
Returns
void
Defined in
api.d.ts:11557