4 lines
303 B
TypeScript
4 lines
303 B
TypeScript
/// <reference types="wechat-miniprogram" />
|
|
export declare type PromisefyOption<T extends Record<string, any>> = Omit<T, 'success' | 'fail' | 'complete'>;
|
|
export declare type PromisefyResult<T extends WechatMiniprogram.AsyncMethodOptionLike> = Promise<Parameters<Exclude<T['success'], undefined>>[0]>;
|