UNPKG

529 BTypeScriptView Raw
1import { InjectionToken } from "@angular/core";
2export interface FormModuleConfig {
3 env?: {
4 production: boolean;
5 frontend_server: string;
6 server: string;
7 };
8 endpoints?: {
9 addForm: string;
10 editForm: string;
11 getForm: string;
12 getList: string;
13 deleteForm: string;
14 captchaUrl: string;
15 };
16}
17export declare const MODULE_DEFAULT_CONFIG: FormModuleConfig;
18export declare const MODULE_CONFIG_TOKEN: InjectionToken<FormModuleConfig>;