utils/lib/cjs/utils.d.ts

9 lines
366 B
TypeScript
Raw Permalink Normal View History

2024-01-27 21:29:33 +00:00
/// <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