UNPKG

dropkiq

Version:

Liquid Expressions Simplified

9 lines (8 loc) 352 B
export default interface IFS { exists: (filepath: string) => Promise<boolean>; readFile: (filepath: string) => Promise<string>; existsSync: (filepath: string) => boolean; readFileSync: (filepath: string) => string; resolve: (root: string, file: string, ext: string) => string; fallback?: (file: string) => string | undefined; }