WebUI X Documentation
    Preparing search index...

    Interface FileInputInterface

    interface FileInputInterface {
        open(path: string): null | FileInputInterfaceStream;
    }
    Index

    Methods

    Methods

    • Opens a file for reading.

      Parameters

      • path: string

        The path to the file to be opened.

      Returns null | FileInputInterfaceStream

      A FileInputInterfaceStream object if the file is opened successfully, null otherwise.