/** * @author WMXPY * @namespace Database * @description Get */ import { DatabaseAnnotations, IMBRICATE_DATABASE_FEATURE, ImbricateDatabaseSchema } from "@imbricate/core"; import express from "express"; import { LoadedOrigin } from "../util/load"; export type ImbricateDatabaseGetResponse = { readonly supportedFeatures: IMBRICATE_DATABASE_FEATURE[]; readonly databaseUniqueIdentifier: string; readonly databaseVersion: string; readonly databaseName: string; readonly databaseSchema: ImbricateDatabaseSchema; readonly databaseAnnotations: DatabaseAnnotations; }; export declare const attachDatabaseGetRoute: (application: express.Express, originMap: Map) => Promise;