import type { DocId } from "./DocId"; export type DocUpdate = { id: DocId; /** * The title, which is a short description of the doc. */ title?: string; /** * The full title of the folder, which is a project or list of docs. */ folder?: string; /** * The full content of the doc, which can include markdown formatting. */ text?: string; };