exupery-core-data 0.1.2 → 0.1.3
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.
@@ -1,4 +1,3 @@
|
|
1
|
-
import * as _ei from 'exupery-core-internals';
|
2
1
|
import * as _et from 'exupery-core-types';
|
3
2
|
import * as pt from 'exupery-core-types';
|
4
3
|
export type Raw_Or_Normal_Dictionary<T> = {
|
@@ -12,7 +11,4 @@ export type Dictionary<T_D> = _et.Dictionary<T_D>;
|
|
12
11
|
export type List<T_L> = _et.Array<T_L>;
|
13
12
|
export declare const wrap_dictionary: <T>($: Raw_Or_Normal_Dictionary<T>) => Dictionary<T>;
|
14
13
|
export declare const wrap_list: <T>($: T[]) => List<T>;
|
15
|
-
export declare const wrap_state_group: <T>($: T) =>
|
16
|
-
location: _ei.Source_Location;
|
17
|
-
'state group': T;
|
18
|
-
};
|
14
|
+
export declare const wrap_state_group: <T>($: T) => T;
|