human/types/src/helpers.d.ts

9 lines
323 B
TypeScript
Raw Normal View History

2021-05-25 14:58:20 +02:00
/**
* Simple helper functions used accross codebase
*/
2021-04-09 14:07:58 +02:00
export declare function join(folder: string, file: string): string;
2021-03-21 12:49:55 +01:00
export declare function log(...msg: any[]): void;
export declare const now: () => number;
export declare function mergeDeep(...objects: any[]): any;
2021-06-05 02:22:05 +02:00
export declare const minmax: (data: any) => any;