UNPKG

@stonx/elysia

Version:

[![npm version](https://img.shields.io/npm/v/@stonx/elysia.svg)](https://www.npmjs.com/package/@stonx/elysia) [![license: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Nx compatibility](https://img.shie

30 lines 1.09 kB
export type Language = 'js' | 'ts'; export type UnitTestRunner = 'jest' | 'none'; export type NestSchematic = 'class' | 'controller' | 'decorator' | 'filter' | 'gateway' | 'guard' | 'interceptor' | 'interface' | 'middleware' | 'module' | 'pipe' | 'provider' | 'resolver' | 'resource' | 'service'; export type TransportLayer = 'rest' | 'graphql-code-first' | 'graphql-schema-first' | 'microservice' | 'ws'; export type NestGeneratorOptions = { path: string; skipFormat?: boolean; }; export type NestGeneratorWithLanguageOption = NestGeneratorOptions & { language?: Language; }; export type NestGeneratorWithTestOption = NestGeneratorOptions & { unitTestRunner?: UnitTestRunner; }; export type NestGeneratorWithResourceOption = NestGeneratorOptions & { type?: TransportLayer; crud?: boolean; }; export type NormalizedOptions = { name: string; sourceRoot: string; flat?: boolean; language?: 'js' | 'ts'; module?: string; path?: string; skipFormat?: boolean; skipImport?: boolean; spec?: boolean; }; //# sourceMappingURL=types.d.ts.map