ados-rcm 1.0.485 → 1.0.486

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.
@@ -247,7 +247,23 @@ export interface IADialogCore {
247
247
  export type TADialogActions<T extends string> = {
248
248
  [key in T]: IADialogActions;
249
249
  };
250
- export declare const useADialogCores: <T extends string>(...dlgNames: T[]) => TADialogCores<T>;
250
+ export type TADialogStates<T extends string> = {
251
+ [key in T]: IADialogState;
252
+ };
253
+ /**
254
+ * useADialogCores
255
+ *
256
+ * Description : useADialogCores is a hook that creates dialog cores.
257
+ *
258
+ * Basic Usage : You should use 'useADialogCores' or 'useADialogCore' to make dialog core,
259
+ *
260
+ * if (case 1)
261
+ * const dlgCores = useADialogCores(['dlgName', 'testName']);
262
+ * const dlgCore = dlgCores.dlgName;
263
+ * const testDlgCore = dlgCores.testName;
264
+ *
265
+ */
266
+ export declare const useADialogCores: <T extends string>(extDlgNames: T[] | readonly T[]) => TADialogCores<T>;
251
267
  export declare const useADialogCore: () => IADialogCore;
252
268
  export declare const CreateADC: <P extends {
253
269
  dlgCore: IADialogCore;
@@ -0,0 +1 @@
1
+ export declare function useInit(...functions: (() => any)[]): void;