UNPKG

@vulcan-sql/core

Version:
12 lines (11 loc) 317 B
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)[]; }