Interface I18nFilesystemAdapter

interface I18nFilesystemAdapter {
    exists(path: string): Promise<boolean>;
    readdir(path: string): Promise<string[]>;
    readFile(path: string, encoding: "utf-8"): Promise<string>;
    stat(path: string): Promise<{ isDirectory(): boolean }>;
}

Methods