UNPKG

next-sitemap

Version:
15 lines (14 loc) 303 B
/** * Load file * @param path * @param throwError * @returns */ export declare const loadJSON: <T>(path: string) => Promise<T | undefined>; /** * Export file * @param filePath * @param content * @returns */ export declare const exportFile: (filePath: string, content: string) => Promise<any>;