rotion 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,7 +6,8 @@ export declare const atoh: (a: string) => string;
6
6
  export declare const createDirWhenNotfound: (dir: string) => Promise<void>;
7
7
  export declare function readCache<T>(f: string): Promise<T>;
8
8
  export declare function writeCache(f: string, data: unknown): Promise<void>;
9
- export declare function isAvailableCache(f: string): Promise<boolean>;
9
+ export declare function isAvailableCache(f: string, d?: number): Promise<boolean>;
10
+ export declare const sleep: (m: number) => Promise<unknown>;
10
11
  export declare function saveFile(fileUrl: string, prefix: string): Promise<{
11
12
  src: string;
12
13
  size: number;