/** * @author WMXPY * @namespace Document * @description Get */ import { DocumentAnnotations, IMBRICATE_DOCUMENT_FEATURE } from "@imbricate/core"; import express from "express"; import { DocumentPropertyInstanceRecord } from "../common/properties"; import { LoadedOrigin } from "../util/load"; export type ImbricateDocumentGetResponse = { readonly supportedFeatures: IMBRICATE_DOCUMENT_FEATURE[]; readonly documentUniqueIdentifier: string; readonly documentVersion: string; readonly properties: DocumentPropertyInstanceRecord; readonly annotations: DocumentAnnotations; }; export declare const attachDocumentGetRoute: (application: express.Express, originMap: Map) => Promise;