UNPKG

the-odds-api

Version:
8 lines (7 loc) 249 B
/** * Create file with content. `filepath` and parent dir will be created recursively if not exist * @param filepath * @param content */ declare const createFile: (filepath: string, content?: string) => Promise<void>; export default createFile;