@steroidsjs/core 3.0.0-beta.20 → 3.0.0-beta.21
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.
- package/base/Enum.d.ts +3 -3
- package/package.json +1 -1
package/base/Enum.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export default class Enum {
|
|
2
|
-
static getLabels():
|
|
2
|
+
static getLabels(): Record<string, string>;
|
|
3
3
|
static getKeys(): string[];
|
|
4
|
-
static getLabel(id: any):
|
|
4
|
+
static getLabel(id: any): string;
|
|
5
5
|
static getCssClasses(): {};
|
|
6
6
|
static getCssClass(id: any): any;
|
|
7
7
|
static getDropdownItems(): {
|
|
8
|
-
label:
|
|
8
|
+
label: string;
|
|
9
9
|
id: string;
|
|
10
10
|
}[];
|
|
11
11
|
}
|