10 lines
520 B
TypeScript
10 lines
520 B
TypeScript
import * as ts from 'typescript';
|
|
import { ExtendedRoutesConfig } from '../cli';
|
|
import { Tsoa } from '@tsoa/runtime';
|
|
import { Config as BaseConfig } from '@tsoa/runtime';
|
|
export declare function generateRoutes<Config extends ExtendedRoutesConfig>(routesConfig: Config, compilerOptions?: ts.CompilerOptions, ignorePaths?: string[],
|
|
/**
|
|
* pass in cached metadata returned in a previous step to speed things up
|
|
*/
|
|
metadata?: Tsoa.Metadata, defaultNumberType?: BaseConfig['defaultNumberType']): Promise<Tsoa.Metadata>;
|