Theia API Documentation v1.65.0
    Preparing search index...
    interface TextFileStreamContent {
        ctime: number;
        encoding: string;
        etag: string;
        mtime: number;
        name: string;
        resource: URI;
        size: number;
        value: ReadableStream<string>;
    }

    Hierarchy

    • BaseTextFileContent
      • TextFileStreamContent
    Index

    Properties

    ctime: number

    The creation date represented as millis from unix epoch.

    The value may or may not be resolved as it is optional.

    encoding: string

    The encoding of the content if known.

    etag: string

    A unique identifier that represents the current state of the file or directory.

    The value may or may not be resolved as it is optional.

    mtime: number

    The last modification date represented as millis from unix epoch.

    The value may or may not be resolved as it is optional.

    name: string

    The name which is the last segment of the {{path}}.

    resource: URI

    The unified resource identifier of this file or folder.

    size: number

    The size of the file.

    The value may or may not be resolved as it is optional.

    value: ReadableStream<string>

    The line grouped content of a text file.