UNPKG

harperdb

Version:

HarperDB is a distributed database, caching service, streaming broker, and application development platform focused on performance and ease of use.

28 lines (27 loc) 636 B
import { Resources } from './Resources.ts'; export declare function generateJsonApi(resources: Resources, serverHttpURL: string): { openapi: string; info: { title: string; version: any; }; servers: { description: string; url: string; }[]; paths: {}; components: { schemas: {}; securitySchemes: { basicAuth: { type: string; scheme: string; }; bearerAuth: { type: string; scheme: string; bearerFormat: string; }; }; }; };