leetcode-tools
Version:
A cli tool to enjoy leetcode!
12 lines (11 loc) • 342 B
TypeScript
declare function Log(...text: unknown[]): void;
declare function Info(...text: unknown[]): void;
declare function Warn(...text: unknown[]): void;
declare function Error(...text: unknown[]): void;
declare const _default: {
Log: typeof Log;
Info: typeof Info;
Warn: typeof Warn;
Error: typeof Error;
};
export default _default;