kysely
    Preparing search index...

    Interface File

    interface File {
        lastModified: number;
        name: string;
        size: number;
        type: string;
        webkitRelativePath: string;
        arrayBuffer(): Promise<ArrayBuffer>;
        bytes(): Promise<NonSharedUint8Array>;
        slice(start?: number, end?: number, contentType?: string): Blob;
        stream(): ReadableStream<NonSharedUint8Array>;
        text(): Promise<string>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    lastModified: number
    name: string
    size: number
    type: string
    webkitRelativePath: string

    Methods