Umi — API References - v1.3.0
    Preparing search index...

    Type Alias GenericFile

    A generic definition of a File represented as a buffer with extra metadata such as a file name, content type, and tags.

    type GenericFile = {
        buffer: Uint8Array;
        contentType: string | null;
        displayName: string;
        extension: string | null;
        fileName: string;
        tags: GenericFileTag[];
        uniqueName: string;
    }
    Index

    Properties

    buffer: Uint8Array
    contentType: string | null
    displayName: string
    extension: string | null
    fileName: string
    uniqueName: string