Documentation
    Preparing search index...

    Interface File

    An object representing a file and its contents

    interface File {
        getContent: () => ReadableStream<Uint8Array<ArrayBufferLike>>;
        isPresent: boolean;
        url: URL;
    }
    Index

    Properties

    getContent: () => ReadableStream<Uint8Array<ArrayBufferLike>>
    isPresent: boolean

    Whether the URL represents a currently-present file in the filesystem

    url: URL

    The file's location