UNPKG

@intuitionrobotics/live-docs

Version:
21 lines (20 loc) 538 B
import { Auditable } from "@intuitionrobotics/ts-common"; export declare type LiveDocReqParams = { key: string; }; export declare type LiveDocHistoryReqParams = LiveDocReqParams & { change: "undo" | "redo"; }; declare type Document = { document: string; }; export declare type DB_DocumentHistory = Auditable & { docs: DB_Document[]; key: string; index: number; }; export declare type DB_Document = Auditable & Document & {}; export declare type Request_UpdateDocument = Document & { key: string; }; export {};