@trapi/metadata
Version:
Generate REST-API metadata scheme from TypeScript Decorators.
11 lines • 303 B
TypeScript
import type { CompilerOptions } from 'typescript';
export type TsconfigLoadContext = {
cwd?: string;
name?: string;
};
export type TsCompilerOptions = CompilerOptions;
export type TsConfig = {
compilerOptions?: TsCompilerOptions;
[key: string]: any;
};
//# sourceMappingURL=type.d.ts.map