1 | import { HttpRequestBaseModel } from "@soushians/shared";
|
2 | import { FormGroup } from "@angular/forms";
|
3 | import { ConfigModel } from "../models";
|
4 | export declare module EditConfigApiModel {
|
5 | class Request implements HttpRequestBaseModel<Request> {
|
6 | Name: string;
|
7 | Config: {};
|
8 | constructor(initValue?: Request);
|
9 | getRequestBody(): {
|
10 | Name: string;
|
11 | Config: {};
|
12 | };
|
13 | static readonly formGroup: FormGroup;
|
14 | }
|
15 | class Response {
|
16 | Result: ConfigModel<any>;
|
17 | constructor();
|
18 | }
|
19 | }
|