WebUI X Documentation
    Preparing search index...

    Interface FileInputInterfaceStreamInternal

    This is a private interface which is not accessible in the window object. It is used to define the structure of a file input stream.

    interface FileInputInterfaceStream {
        close(): void;
        read(): number;
        readChunk(chinkSize: number): string;
        skip(n: number): number;
    }
    Index

    Methods

    • Returns void

    • Returns number

    • This method needs to be parsed with JSON.parse(...)

      Parameters

      • chinkSize: number

        The size of the chunk to read

      Returns string

      The chunk data as a string

    • Parameters

      • n: number

      Returns number