@vectorx/cloud-toolkit
Version:
VectorX Cloud Toolkit
7 lines (6 loc) • 388 B
TypeScript
export declare const getFixedFormatTime: (format: string, timeDistance?: number) => string;
export declare function getNonce(): string;
export declare function getMd5(str: string): string;
export declare function guid(): string;
export declare function retry<T>(fn: () => Promise<T>, maxRetries?: number, delay?: number): Promise<T>;
export declare const toHump: (str: string) => string;