pareto-core-shorthands 0.2.7 → 0.2.9
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.
|
@@ -5,11 +5,11 @@ export type Raw_Or_Normal_Dictionary<T> = {
|
|
|
5
5
|
export type Raw_Or_Normal_List<T> = T[] | _pi.List<T>;
|
|
6
6
|
export type Raw_Optional<T> = null | undefined | T;
|
|
7
7
|
export type Reference_To_Normal_Dictionary_Entry<G_Source, T_Dictionary_Entry> = {
|
|
8
|
-
readonly '
|
|
8
|
+
readonly 'key': string;
|
|
9
9
|
readonly 'location': G_Source;
|
|
10
10
|
};
|
|
11
11
|
export type Reference_To_Stacked_Dictionary_Entry<G_Source, T_Dictionary_Entry> = {
|
|
12
|
-
readonly '
|
|
12
|
+
readonly 'key': string;
|
|
13
13
|
readonly 'location': G_Source;
|
|
14
14
|
};
|
|
15
15
|
export type Dictionary<G_Source, T_D> = {
|
package/dist/unresolved_data.js
CHANGED
|
@@ -112,14 +112,14 @@ exports.wrap_optional = wrap_optional;
|
|
|
112
112
|
const wrap_reference = ($) => {
|
|
113
113
|
return {
|
|
114
114
|
'location': (0, get_location_info_1.$$)(depth + 1),
|
|
115
|
-
'
|
|
115
|
+
'key': $,
|
|
116
116
|
};
|
|
117
117
|
};
|
|
118
118
|
exports.wrap_reference = wrap_reference;
|
|
119
119
|
const wrap_stack_reference = (name) => {
|
|
120
120
|
return {
|
|
121
121
|
'location': (0, get_location_info_1.$$)(depth + 1),
|
|
122
|
-
'
|
|
122
|
+
'key': name,
|
|
123
123
|
};
|
|
124
124
|
};
|
|
125
125
|
exports.wrap_stack_reference = wrap_stack_reference;
|