import { eServiceType } from '../enums'; export interface GenerateProxySchema { /** * Backend module name */ module?: string; /** * Backend api name, a.k.a. remoteServiceName */ apiName?: string; /** * Source Angular project for API definition URL & root namespace resolution */ source?: string; /** * Target Angular project to place the generated code */ target?: string; /** * Url to API definition */ url?: string; /** * Secondary entrypoint for proxy generation */ entryPoint?: string; serviceType?: eServiceType; }