UNPKG

@godspeedsystems/core

Version:

> 4th Generation Declarative Microservice Framework

17 lines (16 loc) 409 B
import { PlainObject } from "../types"; type EventSourceConfig = { port: number; jwt?: PlainObject; authn?: { jwt?: PlainObject; }; docs?: { info: any; servers: any[]; }; }; export declare const generateSwaggerJSON: (events: PlainObject, definitions: PlainObject, eventSourceConfig: EventSourceConfig) => { [key: string]: any; }; export {};