payload
Version:
Node, React, Headless CMS and Application Framework built on Next.js
16 lines • 533 B
TypeScript
import type { FetchAPIFileUploadOptions } from '../../config/types.js';
import type { FileShape } from './index.js';
type FileFactoryOptions = {
buffer: Buffer;
encoding: string;
hash: Buffer | string;
mimetype: string;
name: string;
size: number;
tempFilePath: string;
truncated: boolean;
};
type FileFactory = (options: FileFactoryOptions, fileUploadOptions: FetchAPIFileUploadOptions) => FileShape;
export declare const fileFactory: FileFactory;
export {};
//# sourceMappingURL=fileFactory.d.ts.map