payload
Version:
Node, React, Headless CMS and Application Framework built on Next.js
8 lines • 303 B
TypeScript
/**
* Save buffer data to a file.
* @param {Buffer} buffer - buffer to save to a file.
* @param {string} filePath - path to a file.
*/
declare const saveBufferToFile: (buffer: Buffer, filePath: string) => Promise<void>;
export default saveBufferToFile;
//# sourceMappingURL=saveBufferToFile.d.ts.map