interface BaseDoc {
    name?: string;
    path: string;
    repo: string;
    type: "dir" | "file" | `__${string}`;
}

Hierarchy (view full)

Properties

Properties

name?: string
path: string
repo: string
type: "dir" | "file" | `__${string}`