The return type of the FileSystem#resolveContent method.

interface FileStatWithContent {
    content: string;
    stat: Stats & {
        uri: string;
    };
}

Properties

Properties

content: string

The content of the file as a UTF-8 encoded string.

stat: Stats & {
    uri: string;
}

The file stat.

Type declaration

  • uri: string