UNPKG

swagger2

Version:

Typescript-based tools for working with Swagger v2.0 documents

12 lines (11 loc) 580 B
import * as compiler from './compiler'; import * as document from './document'; import type * as schema from './schema'; import * as validate from './validate'; export declare const loadDocumentSync: typeof document.loadDocumentSync; export declare const validateDocument: typeof document.validateDocument; export declare const validateRequest: typeof validate.request; export declare const validateResponse: typeof validate.response; export declare const compileDocument: typeof compiler.compile; export type Compiled = compiler.Compiled; export type Document = schema.Document;