@thi.ng/api 8.3.4 → 8.3.7
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/CHANGELOG.md +1 -1
- package/decorators/deprecated.d.ts +1 -1
- package/package.json +57 -57
package/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*
|
|
7
7
|
* @param msg - deprecation message
|
|
8
8
|
*/
|
|
9
|
-
export declare const deprecated: (msg?: string
|
|
9
|
+
export declare const deprecated: (msg?: string, log?: {
|
|
10
10
|
(...data: any[]): void;
|
|
11
11
|
(message?: any, ...optionalParams: any[]): void;
|
|
12
12
|
}) => MethodDecorator;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/api",
|
|
3
|
-
"version": "8.3.
|
|
3
|
+
"version": "8.3.7",
|
|
4
4
|
"description": "Common, generic types, interfaces & mixins",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@microsoft/api-extractor": "^7.
|
|
38
|
-
"@thi.ng/testament": "^0.2.
|
|
37
|
+
"@microsoft/api-extractor": "^7.25.0",
|
|
38
|
+
"@thi.ng/testament": "^0.2.8",
|
|
39
39
|
"rimraf": "^3.0.2",
|
|
40
40
|
"tools": "^0.0.1",
|
|
41
|
-
"typedoc": "^0.22.
|
|
42
|
-
"typescript": "^4.
|
|
41
|
+
"typedoc": "^0.22.17",
|
|
42
|
+
"typescript": "^4.7.3"
|
|
43
43
|
},
|
|
44
44
|
"keywords": [
|
|
45
45
|
"assert",
|
|
@@ -69,158 +69,158 @@
|
|
|
69
69
|
],
|
|
70
70
|
"exports": {
|
|
71
71
|
".": {
|
|
72
|
-
"
|
|
72
|
+
"default": "./index.js"
|
|
73
73
|
},
|
|
74
74
|
"./api": {
|
|
75
|
-
"
|
|
75
|
+
"default": "./api.js"
|
|
76
76
|
},
|
|
77
77
|
"./assoc": {
|
|
78
|
-
"
|
|
78
|
+
"default": "./assoc.js"
|
|
79
79
|
},
|
|
80
80
|
"./bind": {
|
|
81
|
-
"
|
|
81
|
+
"default": "./bind.js"
|
|
82
82
|
},
|
|
83
83
|
"./buffered": {
|
|
84
|
-
"
|
|
84
|
+
"default": "./buffered.js"
|
|
85
85
|
},
|
|
86
86
|
"./clear": {
|
|
87
|
-
"
|
|
87
|
+
"default": "./clear.js"
|
|
88
88
|
},
|
|
89
89
|
"./compare": {
|
|
90
|
-
"
|
|
90
|
+
"default": "./compare.js"
|
|
91
91
|
},
|
|
92
92
|
"./contains": {
|
|
93
|
-
"
|
|
93
|
+
"default": "./contains.js"
|
|
94
94
|
},
|
|
95
95
|
"./copy": {
|
|
96
|
-
"
|
|
96
|
+
"default": "./copy.js"
|
|
97
97
|
},
|
|
98
98
|
"./decorators/configurable": {
|
|
99
|
-
"
|
|
99
|
+
"default": "./decorators/configurable.js"
|
|
100
100
|
},
|
|
101
101
|
"./decorators/deprecated": {
|
|
102
|
-
"
|
|
102
|
+
"default": "./decorators/deprecated.js"
|
|
103
103
|
},
|
|
104
104
|
"./decorators/nomixin": {
|
|
105
|
-
"
|
|
105
|
+
"default": "./decorators/nomixin.js"
|
|
106
106
|
},
|
|
107
107
|
"./decorators/sealed": {
|
|
108
|
-
"
|
|
108
|
+
"default": "./decorators/sealed.js"
|
|
109
109
|
},
|
|
110
110
|
"./deref": {
|
|
111
|
-
"
|
|
111
|
+
"default": "./deref.js"
|
|
112
112
|
},
|
|
113
113
|
"./dissoc": {
|
|
114
|
-
"
|
|
114
|
+
"default": "./dissoc.js"
|
|
115
115
|
},
|
|
116
116
|
"./empty": {
|
|
117
|
-
"
|
|
117
|
+
"default": "./empty.js"
|
|
118
118
|
},
|
|
119
119
|
"./enable": {
|
|
120
|
-
"
|
|
120
|
+
"default": "./enable.js"
|
|
121
121
|
},
|
|
122
122
|
"./equiv": {
|
|
123
|
-
"
|
|
123
|
+
"default": "./equiv.js"
|
|
124
124
|
},
|
|
125
125
|
"./event": {
|
|
126
|
-
"
|
|
126
|
+
"default": "./event.js"
|
|
127
127
|
},
|
|
128
128
|
"./fn": {
|
|
129
|
-
"
|
|
129
|
+
"default": "./fn.js"
|
|
130
130
|
},
|
|
131
131
|
"./get": {
|
|
132
|
-
"
|
|
132
|
+
"default": "./get.js"
|
|
133
133
|
},
|
|
134
134
|
"./grid": {
|
|
135
|
-
"
|
|
135
|
+
"default": "./grid.js"
|
|
136
136
|
},
|
|
137
137
|
"./hash": {
|
|
138
|
-
"
|
|
138
|
+
"default": "./hash.js"
|
|
139
139
|
},
|
|
140
140
|
"./hiccup": {
|
|
141
|
-
"
|
|
141
|
+
"default": "./hiccup.js"
|
|
142
142
|
},
|
|
143
143
|
"./id": {
|
|
144
|
-
"
|
|
144
|
+
"default": "./id.js"
|
|
145
145
|
},
|
|
146
146
|
"./indexed": {
|
|
147
|
-
"
|
|
147
|
+
"default": "./indexed.js"
|
|
148
148
|
},
|
|
149
149
|
"./into": {
|
|
150
|
-
"
|
|
150
|
+
"default": "./into.js"
|
|
151
151
|
},
|
|
152
152
|
"./keyval": {
|
|
153
|
-
"
|
|
153
|
+
"default": "./keyval.js"
|
|
154
154
|
},
|
|
155
155
|
"./length": {
|
|
156
|
-
"
|
|
156
|
+
"default": "./length.js"
|
|
157
157
|
},
|
|
158
158
|
"./meta": {
|
|
159
|
-
"
|
|
159
|
+
"default": "./meta.js"
|
|
160
160
|
},
|
|
161
161
|
"./mixin": {
|
|
162
|
-
"
|
|
162
|
+
"default": "./mixin.js"
|
|
163
163
|
},
|
|
164
164
|
"./mixins/ienable": {
|
|
165
|
-
"
|
|
165
|
+
"default": "./mixins/ienable.js"
|
|
166
166
|
},
|
|
167
167
|
"./mixins/igrid": {
|
|
168
|
-
"
|
|
168
|
+
"default": "./mixins/igrid.js"
|
|
169
169
|
},
|
|
170
170
|
"./mixins/inotify": {
|
|
171
|
-
"
|
|
171
|
+
"default": "./mixins/inotify.js"
|
|
172
172
|
},
|
|
173
173
|
"./mixins/iterable": {
|
|
174
|
-
"
|
|
174
|
+
"default": "./mixins/iterable.js"
|
|
175
175
|
},
|
|
176
176
|
"./mixins/iwatch": {
|
|
177
|
-
"
|
|
177
|
+
"default": "./mixins/iwatch.js"
|
|
178
178
|
},
|
|
179
179
|
"./null": {
|
|
180
|
-
"
|
|
180
|
+
"default": "./null.js"
|
|
181
181
|
},
|
|
182
182
|
"./object": {
|
|
183
|
-
"
|
|
183
|
+
"default": "./object.js"
|
|
184
184
|
},
|
|
185
185
|
"./path": {
|
|
186
|
-
"
|
|
186
|
+
"default": "./path.js"
|
|
187
187
|
},
|
|
188
188
|
"./predicate": {
|
|
189
|
-
"
|
|
189
|
+
"default": "./predicate.js"
|
|
190
190
|
},
|
|
191
191
|
"./prim": {
|
|
192
|
-
"
|
|
192
|
+
"default": "./prim.js"
|
|
193
193
|
},
|
|
194
194
|
"./range": {
|
|
195
|
-
"
|
|
195
|
+
"default": "./range.js"
|
|
196
196
|
},
|
|
197
197
|
"./release": {
|
|
198
|
-
"
|
|
198
|
+
"default": "./release.js"
|
|
199
199
|
},
|
|
200
200
|
"./reset": {
|
|
201
|
-
"
|
|
201
|
+
"default": "./reset.js"
|
|
202
202
|
},
|
|
203
203
|
"./select": {
|
|
204
|
-
"
|
|
204
|
+
"default": "./select.js"
|
|
205
205
|
},
|
|
206
206
|
"./seq": {
|
|
207
|
-
"
|
|
207
|
+
"default": "./seq.js"
|
|
208
208
|
},
|
|
209
209
|
"./set": {
|
|
210
|
-
"
|
|
210
|
+
"default": "./set.js"
|
|
211
211
|
},
|
|
212
212
|
"./stack": {
|
|
213
|
-
"
|
|
213
|
+
"default": "./stack.js"
|
|
214
214
|
},
|
|
215
215
|
"./tuple": {
|
|
216
|
-
"
|
|
216
|
+
"default": "./tuple.js"
|
|
217
217
|
},
|
|
218
218
|
"./typedarray": {
|
|
219
|
-
"
|
|
219
|
+
"default": "./typedarray.js"
|
|
220
220
|
},
|
|
221
221
|
"./watch": {
|
|
222
|
-
"
|
|
222
|
+
"default": "./watch.js"
|
|
223
223
|
}
|
|
224
224
|
},
|
|
225
|
-
"gitHead": "
|
|
225
|
+
"gitHead": "9e516d30a1a537e027a6b3d78bf9121bc5831d31\n"
|
|
226
226
|
}
|