WebUI X Documentation
    Preparing search index...

    Interface FileOutputInterfaceStreamInternal

    Represents a stream interface for file output operations. Provides methods to write data, flush buffered data, and close the stream.

    This is a private interface which is not accessible in the window object.

    interface FileOutputInterfaceStream {
        close(): void;
        flush(): void;
        write(b: number): void;
    }
    Index

    Methods

    Methods

    • Closes the output stream and releases any associated resources.

      Returns void

    • Flushes any buffered data to the underlying file or output destination.

      Returns void

    • Writes a single byte to the output stream.

      Parameters

      • b: number

        The byte value to write.

      Returns void