@visulima/api-platform
Version:
Visulima API platform is a set of tools to build and consume web APIs
11 lines (9 loc) • 339 B
TypeScript
interface RenderOptions {
excludePaths: string[];
group: string;
includePaths: string[];
methods: string[];
verbose: boolean;
}
declare const listCommand: (framework: "express" | "fastify" | "hapi" | "koa" | "next" | undefined, path: string, options?: Partial<RenderOptions>) => Promise<void>;
export { listCommand };