mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-27 17:50:53 +01:00
5 lines
200 B
TypeScript
5 lines
200 B
TypeScript
export declare const voidFunc: () => void;
|
|
export declare const voidAsyncFunc: () => Promise<void>;
|
|
export declare const emptyObjectFunc: () => {};
|
|
export declare const emptyArrayFunc: () => never[];
|