exupery 0.1.12 → 0.1.13
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/dist/generated/interface/core/resolved.d.ts +46 -46
- package/dist/generated/interface/core/unconstrained.d.ts +10 -10
- package/dist/generated/interface/core/unresolved.d.ts +86 -86
- package/dist/generated/interface/schemas/implementation/data_types/resolve.d.ts +133 -133
- package/dist/generated/interface/schemas/implementation/data_types/unresolved.d.ts +707 -707
- package/dist/generated/interface/schemas/interface/data_types/resolve.d.ts +133 -133
- package/dist/generated/interface/schemas/interface/data_types/unresolved.d.ts +224 -224
- package/package.json +1 -1
|
@@ -1,100 +1,100 @@
|
|
|
1
1
|
import * as _pt from 'exupery-core-types';
|
|
2
|
-
export type _T_Derived_Reference<
|
|
3
|
-
export type _T_Dictionary<
|
|
4
|
-
export type _T_List<
|
|
5
|
-
export type _T_Ordered_Dictionary<
|
|
2
|
+
export type _T_Derived_Reference<M_Source, T_Type> = T_Type;
|
|
3
|
+
export type _T_Dictionary<M_Source, T_D> = _pt.Dictionary<T_D>;
|
|
4
|
+
export type _T_List<M_Source, T_L> = _pt.Array<T_L>;
|
|
5
|
+
export type _T_Ordered_Dictionary<M_Source, T_D> = {
|
|
6
6
|
readonly 'dictionary': _pt.Dictionary<T_D>;
|
|
7
7
|
readonly 'ordered list': _pt.Array<_pt.Key_Value_Pair<T_D>>;
|
|
8
8
|
};
|
|
9
|
-
export type _T_Reference_To_Circular_Dependent_Sibling<
|
|
9
|
+
export type _T_Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry> = {
|
|
10
10
|
readonly 'entry': _pt.Computed_Value<T_Dictionary_Entry>;
|
|
11
11
|
readonly 'key': string;
|
|
12
12
|
};
|
|
13
|
-
export type _T_Reference_To_Normal_Dictionary_Entry<
|
|
13
|
+
export type _T_Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry> = {
|
|
14
14
|
readonly 'entry': T_Dictionary_Entry;
|
|
15
15
|
readonly 'key': string;
|
|
16
16
|
};
|
|
17
|
-
export type _T_Reference_To_Stacked_Dictionary_Entry<
|
|
17
|
+
export type _T_Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry> = {
|
|
18
18
|
readonly 'entry': T_Dictionary_Entry;
|
|
19
19
|
readonly 'key': string;
|
|
20
20
|
readonly 'up steps': number;
|
|
21
21
|
};
|
|
22
|
-
export type _T_State_Group<
|
|
23
|
-
export type Derived_Reference<
|
|
24
|
-
export type Dictionary<
|
|
25
|
-
export type List<
|
|
26
|
-
export type Ordered_Dictionary<
|
|
27
|
-
export type Reference_To_Circular_Dependent_Sibling<
|
|
28
|
-
export type Reference_To_Normal_Dictionary_Entry<
|
|
29
|
-
export type Reference_To_Stacked_Dictionary_Entry<
|
|
30
|
-
export type State_Group<
|
|
22
|
+
export type _T_State_Group<M_Source, T_SG> = T_SG;
|
|
23
|
+
export type Derived_Reference<M_Source, T_Type> = _T_Derived_Reference<M_Source, T_Type>;
|
|
24
|
+
export type Dictionary<M_Source, T_D> = _T_Dictionary<M_Source, T_D>;
|
|
25
|
+
export type List<M_Source, T_L> = _T_List<M_Source, T_L>;
|
|
26
|
+
export type Ordered_Dictionary<M_Source, T_D> = _T_Ordered_Dictionary<M_Source, T_D>;
|
|
27
|
+
export type Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry> = _T_Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry>;
|
|
28
|
+
export type Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry> = _T_Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry>;
|
|
29
|
+
export type Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry> = _T_Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry>;
|
|
30
|
+
export type State_Group<M_Source, T_SG> = _T_State_Group<M_Source, T_SG>;
|
|
31
31
|
export declare namespace _T_Dictionary {
|
|
32
|
-
type D<
|
|
32
|
+
type D<M_Source, T_D> = T_D;
|
|
33
33
|
}
|
|
34
34
|
export declare namespace _T_List {
|
|
35
|
-
type L<
|
|
35
|
+
type L<M_Source, T_L> = T_L;
|
|
36
36
|
}
|
|
37
37
|
export declare namespace _T_Ordered_Dictionary {
|
|
38
38
|
namespace dictionary {
|
|
39
|
-
type D<
|
|
39
|
+
type D<M_Source, T_D> = T_D;
|
|
40
40
|
}
|
|
41
|
-
type dictionary<
|
|
41
|
+
type dictionary<M_Source, T_D> = _pt.Dictionary<T_D>;
|
|
42
42
|
namespace ordered_list {
|
|
43
43
|
namespace L {
|
|
44
|
-
type K<
|
|
44
|
+
type K<M_Source, T_D> = T_D;
|
|
45
45
|
}
|
|
46
|
-
type L<
|
|
46
|
+
type L<M_Source, T_D> = _pt.Key_Value_Pair<T_D>;
|
|
47
47
|
}
|
|
48
|
-
type ordered_list<
|
|
48
|
+
type ordered_list<M_Source, T_D> = _pt.Array<_pt.Key_Value_Pair<T_D>>;
|
|
49
49
|
}
|
|
50
50
|
export declare namespace _T_Reference_To_Circular_Dependent_Sibling {
|
|
51
51
|
namespace entry {
|
|
52
|
-
type C<
|
|
52
|
+
type C<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
|
|
53
53
|
}
|
|
54
|
-
type entry<
|
|
55
|
-
type key<
|
|
54
|
+
type entry<M_Source, T_Dictionary_Entry> = _pt.Computed_Value<T_Dictionary_Entry>;
|
|
55
|
+
type key<M_Source, T_Dictionary_Entry> = string;
|
|
56
56
|
}
|
|
57
57
|
export declare namespace _T_Reference_To_Normal_Dictionary_Entry {
|
|
58
|
-
type entry<
|
|
59
|
-
type key<
|
|
58
|
+
type entry<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
|
|
59
|
+
type key<M_Source, T_Dictionary_Entry> = string;
|
|
60
60
|
}
|
|
61
61
|
export declare namespace _T_Reference_To_Stacked_Dictionary_Entry {
|
|
62
|
-
type entry<
|
|
63
|
-
type key<
|
|
64
|
-
type up_steps<
|
|
62
|
+
type entry<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
|
|
63
|
+
type key<M_Source, T_Dictionary_Entry> = string;
|
|
64
|
+
type up_steps<M_Source, T_Dictionary_Entry> = number;
|
|
65
65
|
}
|
|
66
66
|
export declare namespace Dictionary {
|
|
67
|
-
type D<
|
|
67
|
+
type D<M_Source, T_D> = T_D;
|
|
68
68
|
}
|
|
69
69
|
export declare namespace List {
|
|
70
|
-
type L<
|
|
70
|
+
type L<M_Source, T_L> = T_L;
|
|
71
71
|
}
|
|
72
72
|
export declare namespace Ordered_Dictionary {
|
|
73
73
|
namespace dictionary {
|
|
74
|
-
type D<
|
|
74
|
+
type D<M_Source, T_D> = T_D;
|
|
75
75
|
}
|
|
76
|
-
type dictionary<
|
|
76
|
+
type dictionary<M_Source, T_D> = _pt.Dictionary<T_D>;
|
|
77
77
|
namespace ordered_list {
|
|
78
78
|
namespace L {
|
|
79
|
-
type K<
|
|
79
|
+
type K<M_Source, T_D> = T_D;
|
|
80
80
|
}
|
|
81
|
-
type L<
|
|
81
|
+
type L<M_Source, T_D> = _pt.Key_Value_Pair<T_D>;
|
|
82
82
|
}
|
|
83
|
-
type ordered_list<
|
|
83
|
+
type ordered_list<M_Source, T_D> = _pt.Array<_pt.Key_Value_Pair<T_D>>;
|
|
84
84
|
}
|
|
85
85
|
export declare namespace Reference_To_Circular_Dependent_Sibling {
|
|
86
86
|
namespace entry {
|
|
87
|
-
type C<
|
|
87
|
+
type C<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
|
|
88
88
|
}
|
|
89
|
-
type entry<
|
|
90
|
-
type key<
|
|
89
|
+
type entry<M_Source, T_Dictionary_Entry> = _pt.Computed_Value<T_Dictionary_Entry>;
|
|
90
|
+
type key<M_Source, T_Dictionary_Entry> = string;
|
|
91
91
|
}
|
|
92
92
|
export declare namespace Reference_To_Normal_Dictionary_Entry {
|
|
93
|
-
type entry<
|
|
94
|
-
type key<
|
|
93
|
+
type entry<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
|
|
94
|
+
type key<M_Source, T_Dictionary_Entry> = string;
|
|
95
95
|
}
|
|
96
96
|
export declare namespace Reference_To_Stacked_Dictionary_Entry {
|
|
97
|
-
type entry<
|
|
98
|
-
type key<
|
|
99
|
-
type up_steps<
|
|
97
|
+
type entry<M_Source, T_Dictionary_Entry> = T_Dictionary_Entry;
|
|
98
|
+
type key<M_Source, T_Dictionary_Entry> = string;
|
|
99
|
+
type up_steps<M_Source, T_Dictionary_Entry> = number;
|
|
100
100
|
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import * as _pt from 'exupery-core-types';
|
|
2
|
-
export type _T_Dictionary<
|
|
3
|
-
export type _T_List<
|
|
4
|
-
export type _T_State_Group<
|
|
5
|
-
export type Dictionary<
|
|
6
|
-
export type List<
|
|
7
|
-
export type State_Group<
|
|
2
|
+
export type _T_Dictionary<M_Source, T_D> = _pt.Dictionary<T_D>;
|
|
3
|
+
export type _T_List<M_Source, T_L> = _pt.Array<T_L>;
|
|
4
|
+
export type _T_State_Group<M_Source, T_SG> = T_SG;
|
|
5
|
+
export type Dictionary<M_Source, T_D> = _T_Dictionary<M_Source, T_D>;
|
|
6
|
+
export type List<M_Source, T_L> = _T_List<M_Source, T_L>;
|
|
7
|
+
export type State_Group<M_Source, T_SG> = _T_State_Group<M_Source, T_SG>;
|
|
8
8
|
export declare namespace _T_Dictionary {
|
|
9
|
-
type D<
|
|
9
|
+
type D<M_Source, T_D> = T_D;
|
|
10
10
|
}
|
|
11
11
|
export declare namespace _T_List {
|
|
12
|
-
type L<
|
|
12
|
+
type L<M_Source, T_L> = T_L;
|
|
13
13
|
}
|
|
14
14
|
export declare namespace Dictionary {
|
|
15
|
-
type D<
|
|
15
|
+
type D<M_Source, T_D> = T_D;
|
|
16
16
|
}
|
|
17
17
|
export declare namespace List {
|
|
18
|
-
type L<
|
|
18
|
+
type L<M_Source, T_L> = T_L;
|
|
19
19
|
}
|
|
@@ -1,184 +1,184 @@
|
|
|
1
1
|
import * as _pt from 'exupery-core-types';
|
|
2
|
-
export type _T_Derived_Reference<
|
|
3
|
-
export type _T_Dictionary<
|
|
2
|
+
export type _T_Derived_Reference<M_Source, T_Type> = null;
|
|
3
|
+
export type _T_Dictionary<M_Source, T_D> = {
|
|
4
4
|
readonly 'dictionary': _pt.Dictionary<{
|
|
5
5
|
readonly 'entry': T_D;
|
|
6
|
-
readonly 'location':
|
|
6
|
+
readonly 'location': M_Source;
|
|
7
7
|
}>;
|
|
8
|
-
readonly 'location':
|
|
8
|
+
readonly 'location': M_Source;
|
|
9
9
|
};
|
|
10
|
-
export type _T_List<
|
|
10
|
+
export type _T_List<M_Source, T_L> = {
|
|
11
11
|
readonly 'list': _pt.Array<{
|
|
12
12
|
readonly 'element': T_L;
|
|
13
|
-
readonly 'location':
|
|
13
|
+
readonly 'location': M_Source;
|
|
14
14
|
}>;
|
|
15
|
-
readonly 'location':
|
|
15
|
+
readonly 'location': M_Source;
|
|
16
16
|
};
|
|
17
|
-
export type _T_Ordered_Dictionary<
|
|
17
|
+
export type _T_Ordered_Dictionary<M_Source, T_D> = {
|
|
18
18
|
readonly 'dictionary': _pt.Dictionary<{
|
|
19
19
|
readonly 'entry': T_D;
|
|
20
|
-
readonly 'location':
|
|
20
|
+
readonly 'location': M_Source;
|
|
21
21
|
}>;
|
|
22
|
-
readonly 'location':
|
|
22
|
+
readonly 'location': M_Source;
|
|
23
23
|
};
|
|
24
|
-
export type _T_Reference_To_Circular_Dependent_Sibling<
|
|
24
|
+
export type _T_Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry> = {
|
|
25
25
|
readonly 'key': string;
|
|
26
|
-
readonly 'location':
|
|
26
|
+
readonly 'location': M_Source;
|
|
27
27
|
};
|
|
28
|
-
export type _T_Reference_To_Normal_Dictionary_Entry<
|
|
28
|
+
export type _T_Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry> = {
|
|
29
29
|
readonly 'key': string;
|
|
30
|
-
readonly 'location':
|
|
30
|
+
readonly 'location': M_Source;
|
|
31
31
|
};
|
|
32
|
-
export type _T_Reference_To_Stacked_Dictionary_Entry<
|
|
32
|
+
export type _T_Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry> = {
|
|
33
33
|
readonly 'key': string;
|
|
34
|
-
readonly 'location':
|
|
34
|
+
readonly 'location': M_Source;
|
|
35
35
|
readonly 'up steps': number;
|
|
36
36
|
};
|
|
37
|
-
export type _T_State_Group<
|
|
38
|
-
readonly 'location':
|
|
37
|
+
export type _T_State_Group<M_Source, T_SG> = {
|
|
38
|
+
readonly 'location': M_Source;
|
|
39
39
|
readonly 'state group': T_SG;
|
|
40
40
|
};
|
|
41
|
-
export type Derived_Reference<
|
|
42
|
-
export type Dictionary<
|
|
43
|
-
export type List<
|
|
44
|
-
export type Ordered_Dictionary<
|
|
45
|
-
export type Reference_To_Circular_Dependent_Sibling<
|
|
46
|
-
export type Reference_To_Normal_Dictionary_Entry<
|
|
47
|
-
export type Reference_To_Stacked_Dictionary_Entry<
|
|
48
|
-
export type State_Group<
|
|
41
|
+
export type Derived_Reference<M_Source, T_Type> = _T_Derived_Reference<M_Source, T_Type>;
|
|
42
|
+
export type Dictionary<M_Source, T_D> = _T_Dictionary<M_Source, T_D>;
|
|
43
|
+
export type List<M_Source, T_L> = _T_List<M_Source, T_L>;
|
|
44
|
+
export type Ordered_Dictionary<M_Source, T_D> = _T_Ordered_Dictionary<M_Source, T_D>;
|
|
45
|
+
export type Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry> = _T_Reference_To_Circular_Dependent_Sibling<M_Source, T_Dictionary_Entry>;
|
|
46
|
+
export type Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry> = _T_Reference_To_Normal_Dictionary_Entry<M_Source, T_Dictionary_Entry>;
|
|
47
|
+
export type Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry> = _T_Reference_To_Stacked_Dictionary_Entry<M_Source, T_Dictionary_Entry>;
|
|
48
|
+
export type State_Group<M_Source, T_SG> = _T_State_Group<M_Source, T_SG>;
|
|
49
49
|
export declare namespace _T_Dictionary {
|
|
50
50
|
namespace dictionary {
|
|
51
51
|
namespace D {
|
|
52
|
-
type entry<
|
|
53
|
-
type location<
|
|
52
|
+
type entry<M_Source, T_D> = T_D;
|
|
53
|
+
type location<M_Source, T_D> = M_Source;
|
|
54
54
|
}
|
|
55
|
-
type D<
|
|
55
|
+
type D<M_Source, T_D> = {
|
|
56
56
|
readonly 'entry': T_D;
|
|
57
|
-
readonly 'location':
|
|
57
|
+
readonly 'location': M_Source;
|
|
58
58
|
};
|
|
59
59
|
}
|
|
60
|
-
type dictionary<
|
|
60
|
+
type dictionary<M_Source, T_D> = _pt.Dictionary<{
|
|
61
61
|
readonly 'entry': T_D;
|
|
62
|
-
readonly 'location':
|
|
62
|
+
readonly 'location': M_Source;
|
|
63
63
|
}>;
|
|
64
|
-
type location<
|
|
64
|
+
type location<M_Source, T_D> = M_Source;
|
|
65
65
|
}
|
|
66
66
|
export declare namespace _T_List {
|
|
67
67
|
namespace list {
|
|
68
68
|
namespace L {
|
|
69
|
-
type element<
|
|
70
|
-
type location<
|
|
69
|
+
type element<M_Source, T_L> = T_L;
|
|
70
|
+
type location<M_Source, T_L> = M_Source;
|
|
71
71
|
}
|
|
72
|
-
type L<
|
|
72
|
+
type L<M_Source, T_L> = {
|
|
73
73
|
readonly 'element': T_L;
|
|
74
|
-
readonly 'location':
|
|
74
|
+
readonly 'location': M_Source;
|
|
75
75
|
};
|
|
76
76
|
}
|
|
77
|
-
type list<
|
|
77
|
+
type list<M_Source, T_L> = _pt.Array<{
|
|
78
78
|
readonly 'element': T_L;
|
|
79
|
-
readonly 'location':
|
|
79
|
+
readonly 'location': M_Source;
|
|
80
80
|
}>;
|
|
81
|
-
type location<
|
|
81
|
+
type location<M_Source, T_L> = M_Source;
|
|
82
82
|
}
|
|
83
83
|
export declare namespace _T_Ordered_Dictionary {
|
|
84
84
|
namespace dictionary {
|
|
85
85
|
namespace D {
|
|
86
|
-
type entry<
|
|
87
|
-
type location<
|
|
86
|
+
type entry<M_Source, T_D> = T_D;
|
|
87
|
+
type location<M_Source, T_D> = M_Source;
|
|
88
88
|
}
|
|
89
|
-
type D<
|
|
89
|
+
type D<M_Source, T_D> = {
|
|
90
90
|
readonly 'entry': T_D;
|
|
91
|
-
readonly 'location':
|
|
91
|
+
readonly 'location': M_Source;
|
|
92
92
|
};
|
|
93
93
|
}
|
|
94
|
-
type dictionary<
|
|
94
|
+
type dictionary<M_Source, T_D> = _pt.Dictionary<{
|
|
95
95
|
readonly 'entry': T_D;
|
|
96
|
-
readonly 'location':
|
|
96
|
+
readonly 'location': M_Source;
|
|
97
97
|
}>;
|
|
98
|
-
type location<
|
|
98
|
+
type location<M_Source, T_D> = M_Source;
|
|
99
99
|
}
|
|
100
100
|
export declare namespace _T_Reference_To_Circular_Dependent_Sibling {
|
|
101
|
-
type key<
|
|
102
|
-
type location<
|
|
101
|
+
type key<M_Source, T_Dictionary_Entry> = string;
|
|
102
|
+
type location<M_Source, T_Dictionary_Entry> = M_Source;
|
|
103
103
|
}
|
|
104
104
|
export declare namespace _T_Reference_To_Normal_Dictionary_Entry {
|
|
105
|
-
type key<
|
|
106
|
-
type location<
|
|
105
|
+
type key<M_Source, T_Dictionary_Entry> = string;
|
|
106
|
+
type location<M_Source, T_Dictionary_Entry> = M_Source;
|
|
107
107
|
}
|
|
108
108
|
export declare namespace _T_Reference_To_Stacked_Dictionary_Entry {
|
|
109
|
-
type key<
|
|
110
|
-
type location<
|
|
111
|
-
type up_steps<
|
|
109
|
+
type key<M_Source, T_Dictionary_Entry> = string;
|
|
110
|
+
type location<M_Source, T_Dictionary_Entry> = M_Source;
|
|
111
|
+
type up_steps<M_Source, T_Dictionary_Entry> = number;
|
|
112
112
|
}
|
|
113
113
|
export declare namespace _T_State_Group {
|
|
114
|
-
type location<
|
|
115
|
-
type state_group<
|
|
114
|
+
type location<M_Source, T_SG> = M_Source;
|
|
115
|
+
type state_group<M_Source, T_SG> = T_SG;
|
|
116
116
|
}
|
|
117
117
|
export declare namespace Dictionary {
|
|
118
118
|
namespace dictionary {
|
|
119
119
|
namespace D {
|
|
120
|
-
type entry<
|
|
121
|
-
type location<
|
|
120
|
+
type entry<M_Source, T_D> = T_D;
|
|
121
|
+
type location<M_Source, T_D> = M_Source;
|
|
122
122
|
}
|
|
123
|
-
type D<
|
|
123
|
+
type D<M_Source, T_D> = {
|
|
124
124
|
readonly 'entry': T_D;
|
|
125
|
-
readonly 'location':
|
|
125
|
+
readonly 'location': M_Source;
|
|
126
126
|
};
|
|
127
127
|
}
|
|
128
|
-
type dictionary<
|
|
128
|
+
type dictionary<M_Source, T_D> = _pt.Dictionary<{
|
|
129
129
|
readonly 'entry': T_D;
|
|
130
|
-
readonly 'location':
|
|
130
|
+
readonly 'location': M_Source;
|
|
131
131
|
}>;
|
|
132
|
-
type location<
|
|
132
|
+
type location<M_Source, T_D> = M_Source;
|
|
133
133
|
}
|
|
134
134
|
export declare namespace List {
|
|
135
135
|
namespace list {
|
|
136
136
|
namespace L {
|
|
137
|
-
type element<
|
|
138
|
-
type location<
|
|
137
|
+
type element<M_Source, T_L> = T_L;
|
|
138
|
+
type location<M_Source, T_L> = M_Source;
|
|
139
139
|
}
|
|
140
|
-
type L<
|
|
140
|
+
type L<M_Source, T_L> = {
|
|
141
141
|
readonly 'element': T_L;
|
|
142
|
-
readonly 'location':
|
|
142
|
+
readonly 'location': M_Source;
|
|
143
143
|
};
|
|
144
144
|
}
|
|
145
|
-
type list<
|
|
145
|
+
type list<M_Source, T_L> = _pt.Array<{
|
|
146
146
|
readonly 'element': T_L;
|
|
147
|
-
readonly 'location':
|
|
147
|
+
readonly 'location': M_Source;
|
|
148
148
|
}>;
|
|
149
|
-
type location<
|
|
149
|
+
type location<M_Source, T_L> = M_Source;
|
|
150
150
|
}
|
|
151
151
|
export declare namespace Ordered_Dictionary {
|
|
152
152
|
namespace dictionary {
|
|
153
153
|
namespace D {
|
|
154
|
-
type entry<
|
|
155
|
-
type location<
|
|
154
|
+
type entry<M_Source, T_D> = T_D;
|
|
155
|
+
type location<M_Source, T_D> = M_Source;
|
|
156
156
|
}
|
|
157
|
-
type D<
|
|
157
|
+
type D<M_Source, T_D> = {
|
|
158
158
|
readonly 'entry': T_D;
|
|
159
|
-
readonly 'location':
|
|
159
|
+
readonly 'location': M_Source;
|
|
160
160
|
};
|
|
161
161
|
}
|
|
162
|
-
type dictionary<
|
|
162
|
+
type dictionary<M_Source, T_D> = _pt.Dictionary<{
|
|
163
163
|
readonly 'entry': T_D;
|
|
164
|
-
readonly 'location':
|
|
164
|
+
readonly 'location': M_Source;
|
|
165
165
|
}>;
|
|
166
|
-
type location<
|
|
166
|
+
type location<M_Source, T_D> = M_Source;
|
|
167
167
|
}
|
|
168
168
|
export declare namespace Reference_To_Circular_Dependent_Sibling {
|
|
169
|
-
type key<
|
|
170
|
-
type location<
|
|
169
|
+
type key<M_Source, T_Dictionary_Entry> = string;
|
|
170
|
+
type location<M_Source, T_Dictionary_Entry> = M_Source;
|
|
171
171
|
}
|
|
172
172
|
export declare namespace Reference_To_Normal_Dictionary_Entry {
|
|
173
|
-
type key<
|
|
174
|
-
type location<
|
|
173
|
+
type key<M_Source, T_Dictionary_Entry> = string;
|
|
174
|
+
type location<M_Source, T_Dictionary_Entry> = M_Source;
|
|
175
175
|
}
|
|
176
176
|
export declare namespace Reference_To_Stacked_Dictionary_Entry {
|
|
177
|
-
type key<
|
|
178
|
-
type location<
|
|
179
|
-
type up_steps<
|
|
177
|
+
type key<M_Source, T_Dictionary_Entry> = string;
|
|
178
|
+
type location<M_Source, T_Dictionary_Entry> = M_Source;
|
|
179
|
+
type up_steps<M_Source, T_Dictionary_Entry> = number;
|
|
180
180
|
}
|
|
181
181
|
export declare namespace State_Group {
|
|
182
|
-
type location<
|
|
183
|
-
type state_group<
|
|
182
|
+
type location<M_Source, T_SG> = M_Source;
|
|
183
|
+
type state_group<M_Source, T_SG> = T_SG;
|
|
184
184
|
}
|