UNPKG

brazejs

Version:

Liquid template engine for the Braze variant by pure JavaScript: compatible to Braze, easy to extend.

6 lines (5 loc) 209 B
export default interface IFS { exists: (filepath: string) => Promise<boolean>; readFile: (filepath: string) => Promise<string>; resolve: (root: string, file: string, ext: string) => string; }