import { eServiceType } from '../enums'; export interface GenerateProxySchema { /** * Backend module name */ module?: string; /** * Backend api name, a.k.a. remoteServiceName */ apiName?: string; /** * Url to API definition */ url?: string; targetPath: string; serviceType?: eServiceType; }