@mongez/gnz
Version:
Generator Z, the next generation of scaffolding tools.
25 lines • 487 B
TypeScript
export type ClientServiceFileGeneratorOptions = {
/**
* The path where to save generated files.
*/
saveTo: string;
/**
* Service name.
*/
name: string;
/**
* Route path
*/
route?: string;
/**
* Save service file as
*/
saveAs?: string;
/**
* Endpoint path that will be used as endpoint resolver
*
* @default shared/endpoint
*/
endpointPath?: string;
};
//# sourceMappingURL=types.d.ts.map