interface Doc {
    absolutePath?: string;
    content?: string;
    contentHash?: string;
    name: string;
    passwordHash?: string;
    path: string;
    plain?: boolean;
    repo: string;
    stat?: FileStat;
    status?:
        | "unsaved"
        | "saved"
        | "save-failed"
        | "loaded";
    title?: string;
    type: "dir" | "file";
    writeable?: boolean;
}

Hierarchy (view full)

Properties

absolutePath?: string
content?: string
contentHash?: string
name: string
passwordHash?: string
path: string
plain?: boolean
repo: string
stat?: FileStat
status?:
    | "unsaved"
    | "saved"
    | "save-failed"
    | "loaded"
title?: string
type: "dir" | "file"
writeable?: boolean