@vulcan-sql/core
Version:
Core package of VulcanSQL
12 lines (11 loc) • 317 B
TypeScript
export declare enum DocumentSpec {
oas3 = "oas3"
}
export declare enum DocumentRouterType {
redoc = "redoc"
}
export interface IDocumentOptions {
/** Target specification of our APIs, e.g. OpenAPI, Tinyspec ...etc. */
specs?: (string | DocumentSpec)[];
router?: (string | DocumentRouterType)[];
}