interface FileReadResult {
    content: string;
    hash: string;
    stat: FileStat;
    writeable: boolean;
}

Properties

content: string
hash: string
stat: FileStat
writeable: boolean