UNPKG

prisma-trpc-generator

Version:

Prisma 2+ generator to emit fully implemented tRPC routers

15 lines (14 loc) 378 B
export type ServiceStyle = 'class' | 'factory' | 'plain'; export interface AdditionalImportSpec { from: string; names?: string[]; default?: string; namespace?: string; } export interface ServicesConfig { withServices: boolean; serviceStyle: ServiceStyle; serviceDir: string; withListMethod: boolean; serviceImports: AdditionalImportSpec[]; }