dmencu 0.7.13 → 0.7.15

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.
@@ -38,6 +38,25 @@ export declare function emergeAppDmEncu<T extends procesamiento.Constructor<proc
38
38
  fallback: string;
39
39
  }[];
40
40
  };
41
+ getMenuControles(context: Context): ({
42
+ menuType: string;
43
+ name: string;
44
+ label: string;
45
+ table?: undefined;
46
+ selectedByDefault?: undefined;
47
+ } | {
48
+ menuType: string;
49
+ name: string;
50
+ table: string;
51
+ selectedByDefault: boolean;
52
+ label?: undefined;
53
+ } | {
54
+ menuType: string;
55
+ name: string;
56
+ table: string;
57
+ label?: undefined;
58
+ selectedByDefault?: undefined;
59
+ })[];
41
60
  getMenu(context: Context): {
42
61
  menu: procesamiento.MenuInfoBase[];
43
62
  };
@@ -524,6 +543,25 @@ export declare var AppDmEncu: {
524
543
  fallback: string;
525
544
  }[];
526
545
  };
546
+ getMenuControles(context: Context): ({
547
+ menuType: string;
548
+ name: string;
549
+ label: string;
550
+ table?: undefined;
551
+ selectedByDefault?: undefined;
552
+ } | {
553
+ menuType: string;
554
+ name: string;
555
+ table: string;
556
+ selectedByDefault: boolean;
557
+ label?: undefined;
558
+ } | {
559
+ menuType: string;
560
+ name: string;
561
+ table: string;
562
+ label?: undefined;
563
+ selectedByDefault?: undefined;
564
+ })[];
527
565
  getMenu(context: Context): {
528
566
  menu: procesamiento.MenuInfoBase[];
529
567
  };