@arl/leaflet-tracksymbol2
    Preparing search index...

    Interface File

    Provides information about files and allows JavaScript in a web page to access their content.

    MDN Reference

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

    Hierarchy (View Summary)

    Index

    Properties

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

    Methods

    • Returns Promise<ArrayBuffer>

    • Parameters

      • Optionalstart: number
      • Optionalend: number
      • OptionalcontentType: string

      Returns Blob

    • Returns Promise<string>