mirror of https://github.com/vladmandic/human
9 lines
323 B
TypeScript
9 lines
323 B
TypeScript
/**
|
|
* Simple helper functions used accross codebase
|
|
*/
|
|
export declare function join(folder: string, file: string): string;
|
|
export declare function log(...msg: any[]): void;
|
|
export declare const now: () => number;
|
|
export declare function mergeDeep(...objects: any[]): any;
|
|
export declare const minmax: (data: any) => any;
|