eservices-core 1.3.298 → 1.3.300

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -84,6 +84,15 @@ export interface IServerParams {
84
84
  * @description Путь до папки с логами, относительно root проекта (пока что).
85
85
  */
86
86
  logPath?: string;
87
+ /**
88
+ * @description Массив обработчиков для файлов или папок. Вызывается в методе useConfig.
89
+ */
90
+ arrayDataBinding?: {
91
+ type: "file";
92
+ elementPath: string;
93
+ handler: (data: unknown) => void;
94
+ defaultValue?: string;
95
+ }[];
87
96
  }
88
97
  export declare type ServerType = 'front' | 'back';
89
98
  export interface IServerSession {