UNPKG

107 BTypeScriptView Raw
1export declare type Maybe<T> = T | null | undefined;
2export declare type MaybePromise<T> = Promise<T> | T;