UNPKG

openapi-ts-mock-generator

Version:
8 lines (5 loc) 342 B
import { Options, SchemaOutputType, PathNormalizedType } from './types.mjs'; import 'openapi-types'; declare const generateSchema: (options: Options) => Promise<Record<string, SchemaOutputType> | undefined>; declare const generateAPI: (options: Options) => Promise<PathNormalizedType[] | undefined>; export { generateAPI, generateSchema };