Skip to content

@waylis/core


@waylis/core / CreateFileMetaParams

Type Alias: CreateFileMetaParams

ts
type CreateFileMetaParams = Omit<FileMeta, "id" | "mimeType" | "createdAt"> & {
  mimeType?: string;
};

Defined in: src/file/file.ts:95

Parameters required to create a new file metadata object. ID, MIME type, and creation date will be generated automatically.

Type Declaration

mimeType?

ts
optional mimeType: string;

Released under the MIT License.