intl-watcher
Version:
Automated translation key extraction and dictionary management plugin for Next.js
16 lines (14 loc) • 458 B
TypeScript
declare const SUCCESS: string;
declare const WARN: string;
declare const ERROR: string;
declare const WAITING: string;
declare const TRACE: string;
declare const log: {
info: (message?: string) => void;
success: (message: string) => void;
warn: (message: string) => void;
error: (message: string) => void;
waiting: (message: string) => void;
trace: (message: string) => void;
};
export { ERROR, SUCCESS, TRACE, WAITING, WARN, log };