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";
}

Hierarchy

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"

Generated using TypeDoc