deno.land / x / simple_utility@v0.0.9 / src / core.d.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*** Function returning arbitrary types.*/export type SyncFunction<T extends unknown = void> = () => T;
/*** Function returning arbitrary async types.*/export type AsyncFunction<T extends unknown = void> = SyncFunction<Promise<T>>;
/*** The file name and byte array pairs that make up the basic file.*/export type FileInit = [string, Uint8Array];
simple_utility

Version Info

Tagged at
a year ago