File size: 485 Bytes
9ada4bc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
type AsyncTuple<ErrorType extends any = Error, DataType extends any = unknown> = {
    error: ErrorType;
    data: null;
} | {
    error: null;
    data: DataType;
};
/**
 * Gracefully handles a given Promise factory.
 * @example
 * const { error, data } = await until(() => asyncAction())
 */
declare const until: <ErrorType extends unknown = Error, DataType extends unknown = unknown>(promise: () => Promise<DataType>) => Promise<AsyncTuple<ErrorType, DataType>>;

export { until };