UNPKG

@bluejeans/flexdoc-backend

Version:

FlexDoc backend integration for NestJS and other frameworks

7 lines (6 loc) 293 B
import { FlexDocModuleOptions } from './interfaces'; interface AppWithUse { use: (path: string, handler: (req: any, res: any, next?: any) => void) => void; } export declare function setupFlexDoc(app: AppWithUse, path: string, options: Omit<FlexDocModuleOptions, 'path'>): void; export {};