Interface TextFileStreamContent

interface TextFileStreamContent {
    ctime: number;
    encoding: string;
    etag: string;
    mtime: number;
    name: string;
    resource: URI;
    size: number;
    value: ReadableStream<string>;
}

Hierarchy

  • BaseTextFileContent
    • TextFileStreamContent

Properties

ctime: number
encoding: string

The encoding of the content if known.

etag: string
mtime: number
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
value: ReadableStream<string>

The line grouped content of a text file.