@jsverse/transloco-keys-manager
Version:
Extract translatable keys from projects that uses Transloco
11 lines (10 loc) • 442 B
TypeScript
import { Ora } from 'ora';
declare function noop(): void;
export declare function getLogger(): {
log: (...msg: string[]) => void | typeof noop;
success: (msg: string) => Ora | typeof noop;
startSpinner: (msg: string) => Ora | typeof noop;
};
type DebugNamespaces = 'config' | 'paths' | 'scopes' | 'extraction';
export declare function devlog(namespace: DebugNamespaces, tag: string, values: Record<string, any>): void;
export {};