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

Hierarchy (view full)

Properties

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