angular-translation-checker
Version:
A comprehensive tool for analyzing translation keys in Angular projects using ngx-translate
13 lines • 565 B
TypeScript
import { FileSystemAdapter } from '../types';
export declare class NodeFileSystemAdapter implements FileSystemAdapter {
readFile(filePath: string): Promise<string>;
writeFile(filePath: string, content: string): Promise<void>;
readdir(dirPath: string): Promise<string[]>;
exists(filePath: string): Promise<boolean>;
isDirectory(filePath: string): Promise<boolean>;
glob(pattern: string, options?: any): Promise<string[]>;
private basicGlob;
private walkDirectory;
private matchesPattern;
}
//# sourceMappingURL=filesystem.d.ts.map