@ansible/ansible-ui-framework 0.0.638 → 0.0.640
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/framework/utils/compare.d.ts +3 -3
- package/index.js +2015 -2072
- package/index.umd.cjs +30 -32
- package/package.json +1 -1
- package/framework/PageAlerts.d.ts +0 -14
@@ -1,3 +1,3 @@
|
|
1
|
-
export declare function compareUnknowns(a: unknown | undefined | null, b: unknown | undefined | null):
|
2
|
-
export declare function compareStrings(a: string | undefined | null, b: string | undefined | null):
|
3
|
-
export declare function compareNumbers(a: number | undefined | null, b: number | undefined | null):
|
1
|
+
export declare function compareUnknowns(a: unknown | undefined | null, b: unknown | undefined | null): 0 | 1 | -1;
|
2
|
+
export declare function compareStrings(a: string | undefined | null, b: string | undefined | null): 0 | 1 | -1;
|
3
|
+
export declare function compareNumbers(a: number | undefined | null, b: number | undefined | null): 0 | 1 | -1;
|