feat: add proxy config interface to schematics

pull/5222/head
Arman Ozak 5 years ago
parent 9c8f752845
commit 012137a485

@ -3,5 +3,6 @@ export * from './import';
export * from './method';
export * from './model';
export * from './project';
export * from './proxy-config';
export * from './service';
export * from './util';

@ -0,0 +1,5 @@
import { ApiDefinition } from './api-definition';
export interface ProxyConfig extends ApiDefinition {
generated: string[];
}
Loading…
Cancel
Save