checksync
Version:
A tool that allows code to be annotated across different files to ensure they remain in sync.
14 lines (13 loc) • 524 B
TypeScript
declare const Format: {
readonly verbose: (text: string) => string;
readonly error: (text: string) => string;
readonly info: (text: string) => string;
readonly warn: (text: string) => string;
readonly mismatch: (text: string) => string;
readonly migrate: (text: string) => string;
readonly fix: (text: string) => string;
readonly cwdFilePath: (filePath: string) => string;
readonly code: (text: string) => string;
readonly heading: (text: string) => string;
};
export default Format;