utils/lib/cjs/utils.d.ts

9 lines
366 B
TypeScript

/// <reference types="node" />
export interface ErrorWithCode {
code: string;
}
export declare const convertCamelToUpperSnakeCase: (str: string) => string;
export declare const getTime: () => string;
export declare const log: (...msg: unknown[]) => void;
export declare const readJsonIfExists: (filePath: string | URL) => any;
//# sourceMappingURL=utils.d.ts.map