swaf/dist/Utils.d.ts

8 lines
321 B
TypeScript

export declare function sleep(ms: number): Promise<void>;
export declare abstract class WrappingError extends Error {
readonly cause?: Error;
protected constructor(message: string, cause?: Error);
get name(): string;
}
export declare function cryptoRandomDictionary(size: number, dictionary: string): string;