@signpostmarv/ts-assert 0.5.0 → 0.5.1
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/lib/main.d.ts +260 -259
- package/lib/main.js +1 -0
- package/lib/main.js.map +1 -1
- package/lib/main.ts +2 -0
- package/package.json +1 -1
package/lib/main.d.ts
CHANGED
|
@@ -16,266 +16,267 @@ declare const _default: {
|
|
|
16
16
|
isTokenWithExpectedKind: typeof isTokenWithExpectedKind;
|
|
17
17
|
isExpectedIdentifier: typeof isExpectedIdentifier;
|
|
18
18
|
isUndefined: typeof isUndefined;
|
|
19
|
-
isAccessor: typeof import("
|
|
20
|
-
isArrayBindingElement: typeof import("
|
|
21
|
-
isArrayBindingPattern: typeof import("
|
|
22
|
-
isArrayLiteralExpression: typeof import("
|
|
23
|
-
isArrayTypeNode: typeof import("
|
|
24
|
-
isArrowFunction: typeof import("
|
|
25
|
-
isAsExpression: typeof import("
|
|
26
|
-
isAssertionExpression: typeof import("
|
|
27
|
-
isAssertsKeyword: typeof import("
|
|
28
|
-
isAsteriskToken: typeof import("
|
|
29
|
-
isAutoAccessorPropertyDeclaration: typeof import("
|
|
30
|
-
isAwaitExpression: typeof import("
|
|
31
|
-
isAwaitKeyword: typeof import("
|
|
32
|
-
isBigIntLiteral: typeof import("
|
|
33
|
-
isBinaryExpression: typeof import("
|
|
34
|
-
isBinaryOperatorToken: typeof import("
|
|
35
|
-
isBindingElement: typeof import("
|
|
36
|
-
isBindingName: typeof import("
|
|
37
|
-
isBlock: typeof import("
|
|
38
|
-
isBreakOrContinueStatement: typeof import("
|
|
39
|
-
isBreakStatement: typeof import("
|
|
40
|
-
isBundle: typeof import("
|
|
41
|
-
isCallChain: typeof import("
|
|
42
|
-
isCallExpression: typeof import("
|
|
43
|
-
isCallLikeExpression: typeof import("
|
|
44
|
-
isCallSignatureDeclaration: typeof import("
|
|
45
|
-
isCaseBlock: typeof import("
|
|
46
|
-
isCaseClause: typeof import("
|
|
47
|
-
isCaseOrDefaultClause: typeof import("
|
|
48
|
-
isCatchClause: typeof import("
|
|
49
|
-
isClassDeclaration: typeof import("
|
|
50
|
-
isClassElement: typeof import("
|
|
51
|
-
isClassExpression: typeof import("
|
|
52
|
-
isClassLike: typeof import("
|
|
53
|
-
isClassStaticBlockDeclaration: typeof import("
|
|
54
|
-
isColonToken: typeof import("
|
|
55
|
-
isCommaListExpression: typeof import("
|
|
56
|
-
isComputedPropertyName: typeof import("
|
|
57
|
-
isConciseBody: typeof import("
|
|
58
|
-
isConditionalExpression: typeof import("
|
|
59
|
-
isConditionalTypeNode: typeof import("
|
|
60
|
-
isConstructorDeclaration: typeof import("
|
|
61
|
-
isConstructorTypeNode: typeof import("
|
|
62
|
-
isConstructSignatureDeclaration: typeof import("
|
|
63
|
-
isContinueStatement: typeof import("
|
|
64
|
-
isDebuggerStatement: typeof import("
|
|
65
|
-
isDeclarationStatement: typeof import("
|
|
66
|
-
isDecorator: typeof import("
|
|
67
|
-
isDefaultClause: typeof import("
|
|
68
|
-
isDeleteExpression: typeof import("
|
|
69
|
-
isDoStatement: typeof import("
|
|
70
|
-
isDotDotDotToken: typeof import("
|
|
71
|
-
isElementAccessChain: typeof import("
|
|
72
|
-
isElementAccessExpression: typeof import("
|
|
73
|
-
isEmptyBindingPattern: typeof import("
|
|
74
|
-
isEmptyStatement: typeof import("
|
|
75
|
-
isEntityName: typeof import("
|
|
76
|
-
isEnumDeclaration: typeof import("
|
|
77
|
-
isEnumMember: typeof import("
|
|
78
|
-
isEqualsGreaterThanToken: typeof import("
|
|
79
|
-
isExclamationToken: typeof import("
|
|
80
|
-
isExportAssignment: typeof import("
|
|
81
|
-
isExportDeclaration: typeof import("
|
|
82
|
-
isExportSpecifier: typeof import("
|
|
19
|
+
isAccessor: typeof import("./main.ts").isAccessor;
|
|
20
|
+
isArrayBindingElement: typeof import("./main.ts").isArrayBindingElement;
|
|
21
|
+
isArrayBindingPattern: typeof import("./main.ts").isArrayBindingPattern;
|
|
22
|
+
isArrayLiteralExpression: typeof import("./main.ts").isArrayLiteralExpression;
|
|
23
|
+
isArrayTypeNode: typeof import("./main.ts").isArrayTypeNode;
|
|
24
|
+
isArrowFunction: typeof import("./main.ts").isArrowFunction;
|
|
25
|
+
isAsExpression: typeof import("./main.ts").isAsExpression;
|
|
26
|
+
isAssertionExpression: typeof import("./main.ts").isAssertionExpression;
|
|
27
|
+
isAssertsKeyword: typeof import("./main.ts").isAssertsKeyword;
|
|
28
|
+
isAsteriskToken: typeof import("./main.ts").isAsteriskToken;
|
|
29
|
+
isAutoAccessorPropertyDeclaration: typeof import("./main.ts").isAutoAccessorPropertyDeclaration;
|
|
30
|
+
isAwaitExpression: typeof import("./main.ts").isAwaitExpression;
|
|
31
|
+
isAwaitKeyword: typeof import("./main.ts").isAwaitKeyword;
|
|
32
|
+
isBigIntLiteral: typeof import("./main.ts").isBigIntLiteral;
|
|
33
|
+
isBinaryExpression: typeof import("./main.ts").isBinaryExpression;
|
|
34
|
+
isBinaryOperatorToken: typeof import("./main.ts").isBinaryOperatorToken;
|
|
35
|
+
isBindingElement: typeof import("./main.ts").isBindingElement;
|
|
36
|
+
isBindingName: typeof import("./main.ts").isBindingName;
|
|
37
|
+
isBlock: typeof import("./main.ts").isBlock;
|
|
38
|
+
isBreakOrContinueStatement: typeof import("./main.ts").isBreakOrContinueStatement;
|
|
39
|
+
isBreakStatement: typeof import("./main.ts").isBreakStatement;
|
|
40
|
+
isBundle: typeof import("./main.ts").isBundle;
|
|
41
|
+
isCallChain: typeof import("./main.ts").isCallChain;
|
|
42
|
+
isCallExpression: typeof import("./main.ts").isCallExpression;
|
|
43
|
+
isCallLikeExpression: typeof import("./main.ts").isCallLikeExpression;
|
|
44
|
+
isCallSignatureDeclaration: typeof import("./main.ts").isCallSignatureDeclaration;
|
|
45
|
+
isCaseBlock: typeof import("./main.ts").isCaseBlock;
|
|
46
|
+
isCaseClause: typeof import("./main.ts").isCaseClause;
|
|
47
|
+
isCaseOrDefaultClause: typeof import("./main.ts").isCaseOrDefaultClause;
|
|
48
|
+
isCatchClause: typeof import("./main.ts").isCatchClause;
|
|
49
|
+
isClassDeclaration: typeof import("./main.ts").isClassDeclaration;
|
|
50
|
+
isClassElement: typeof import("./main.ts").isClassElement;
|
|
51
|
+
isClassExpression: typeof import("./main.ts").isClassExpression;
|
|
52
|
+
isClassLike: typeof import("./main.ts").isClassLike;
|
|
53
|
+
isClassStaticBlockDeclaration: typeof import("./main.ts").isClassStaticBlockDeclaration;
|
|
54
|
+
isColonToken: typeof import("./main.ts").isColonToken;
|
|
55
|
+
isCommaListExpression: typeof import("./main.ts").isCommaListExpression;
|
|
56
|
+
isComputedPropertyName: typeof import("./main.ts").isComputedPropertyName;
|
|
57
|
+
isConciseBody: typeof import("./main.ts").isConciseBody;
|
|
58
|
+
isConditionalExpression: typeof import("./main.ts").isConditionalExpression;
|
|
59
|
+
isConditionalTypeNode: typeof import("./main.ts").isConditionalTypeNode;
|
|
60
|
+
isConstructorDeclaration: typeof import("./main.ts").isConstructorDeclaration;
|
|
61
|
+
isConstructorTypeNode: typeof import("./main.ts").isConstructorTypeNode;
|
|
62
|
+
isConstructSignatureDeclaration: typeof import("./main.ts").isConstructSignatureDeclaration;
|
|
63
|
+
isContinueStatement: typeof import("./main.ts").isContinueStatement;
|
|
64
|
+
isDebuggerStatement: typeof import("./main.ts").isDebuggerStatement;
|
|
65
|
+
isDeclarationStatement: typeof import("./main.ts").isDeclarationStatement;
|
|
66
|
+
isDecorator: typeof import("./main.ts").isDecorator;
|
|
67
|
+
isDefaultClause: typeof import("./main.ts").isDefaultClause;
|
|
68
|
+
isDeleteExpression: typeof import("./main.ts").isDeleteExpression;
|
|
69
|
+
isDoStatement: typeof import("./main.ts").isDoStatement;
|
|
70
|
+
isDotDotDotToken: typeof import("./main.ts").isDotDotDotToken;
|
|
71
|
+
isElementAccessChain: typeof import("./main.ts").isElementAccessChain;
|
|
72
|
+
isElementAccessExpression: typeof import("./main.ts").isElementAccessExpression;
|
|
73
|
+
isEmptyBindingPattern: typeof import("./main.ts").isEmptyBindingPattern;
|
|
74
|
+
isEmptyStatement: typeof import("./main.ts").isEmptyStatement;
|
|
75
|
+
isEntityName: typeof import("./main.ts").isEntityName;
|
|
76
|
+
isEnumDeclaration: typeof import("./main.ts").isEnumDeclaration;
|
|
77
|
+
isEnumMember: typeof import("./main.ts").isEnumMember;
|
|
78
|
+
isEqualsGreaterThanToken: typeof import("./main.ts").isEqualsGreaterThanToken;
|
|
79
|
+
isExclamationToken: typeof import("./main.ts").isExclamationToken;
|
|
80
|
+
isExportAssignment: typeof import("./main.ts").isExportAssignment;
|
|
81
|
+
isExportDeclaration: typeof import("./main.ts").isExportDeclaration;
|
|
82
|
+
isExportSpecifier: typeof import("./main.ts").isExportSpecifier;
|
|
83
83
|
isExpression: typeof isExpression;
|
|
84
|
-
isExpressionStatement: typeof import("
|
|
85
|
-
isExpressionWithTypeArguments: typeof import("
|
|
86
|
-
isExternalModuleReference: typeof import("
|
|
87
|
-
isForInitializer: typeof import("
|
|
88
|
-
isForInStatement: typeof import("
|
|
89
|
-
isForOfStatement: typeof import("
|
|
90
|
-
isForStatement: typeof import("
|
|
91
|
-
isFunctionDeclaration: typeof import("
|
|
92
|
-
isFunctionExpression: typeof import("
|
|
93
|
-
isFunctionTypeNode: typeof import("
|
|
94
|
-
isGetAccessor: typeof import("
|
|
95
|
-
isGetAccessorDeclaration: typeof import("
|
|
96
|
-
isHeritageClause: typeof import("
|
|
84
|
+
isExpressionStatement: typeof import("./main.ts").isExpressionStatement;
|
|
85
|
+
isExpressionWithTypeArguments: typeof import("./main.ts").isExpressionWithTypeArguments;
|
|
86
|
+
isExternalModuleReference: typeof import("./main.ts").isExternalModuleReference;
|
|
87
|
+
isForInitializer: typeof import("./main.ts").isForInitializer;
|
|
88
|
+
isForInStatement: typeof import("./main.ts").isForInStatement;
|
|
89
|
+
isForOfStatement: typeof import("./main.ts").isForOfStatement;
|
|
90
|
+
isForStatement: typeof import("./main.ts").isForStatement;
|
|
91
|
+
isFunctionDeclaration: typeof import("./main.ts").isFunctionDeclaration;
|
|
92
|
+
isFunctionExpression: typeof import("./main.ts").isFunctionExpression;
|
|
93
|
+
isFunctionTypeNode: typeof import("./main.ts").isFunctionTypeNode;
|
|
94
|
+
isGetAccessor: typeof import("./main.ts").isGetAccessor;
|
|
95
|
+
isGetAccessorDeclaration: typeof import("./main.ts").isGetAccessorDeclaration;
|
|
96
|
+
isHeritageClause: typeof import("./main.ts").isHeritageClause;
|
|
97
97
|
isIdentifier: typeof isIdentifier;
|
|
98
|
-
isIfStatement: typeof import("
|
|
99
|
-
isImportAttribute: typeof import("
|
|
100
|
-
isImportAttributeName: typeof import("
|
|
101
|
-
isImportAttributes: typeof import("
|
|
102
|
-
isImportClause: typeof import("
|
|
103
|
-
isImportDeclaration: typeof import("
|
|
104
|
-
isImportEqualsDeclaration: typeof import("
|
|
105
|
-
isImportSpecifier: typeof import("
|
|
106
|
-
isImportTypeNode: typeof import("
|
|
107
|
-
isIndexedAccessTypeNode: typeof import("
|
|
108
|
-
isIndexSignatureDeclaration: typeof import("
|
|
109
|
-
isInferTypeNode: typeof import("
|
|
110
|
-
isInterfaceDeclaration: typeof import("
|
|
111
|
-
isIntersectionTypeNode: typeof import("
|
|
112
|
-
isJSDoc: typeof import("
|
|
113
|
-
isJSDocAllType: typeof import("
|
|
114
|
-
isJSDocAugmentsTag: typeof import("
|
|
115
|
-
isJSDocAuthorTag: typeof import("
|
|
116
|
-
isJSDocCallbackTag: typeof import("
|
|
117
|
-
isJSDocClassTag: typeof import("
|
|
118
|
-
isJSDocDeprecatedTag: typeof import("
|
|
119
|
-
isJSDocEnumTag: typeof import("
|
|
120
|
-
isJSDocFunctionType: typeof import("
|
|
121
|
-
isJSDocImplementsTag: typeof import("
|
|
122
|
-
isJSDocImportTag: typeof import("
|
|
123
|
-
isJSDocLink: typeof import("
|
|
124
|
-
isJSDocLinkCode: typeof import("
|
|
125
|
-
isJSDocLinkPlain: typeof import("
|
|
126
|
-
isJSDocMemberName: typeof import("
|
|
127
|
-
isJSDocNamepathType: typeof import("
|
|
128
|
-
isJSDocNameReference: typeof import("
|
|
129
|
-
isJSDocNonNullableType: typeof import("
|
|
130
|
-
isJSDocNullableType: typeof import("
|
|
131
|
-
isJSDocOptionalType: typeof import("
|
|
132
|
-
isJSDocOverloadTag: typeof import("
|
|
133
|
-
isJSDocOverrideTag: typeof import("
|
|
134
|
-
isJSDocParameterTag: typeof import("
|
|
135
|
-
isJSDocPrivateTag: typeof import("
|
|
136
|
-
isJSDocPropertyLikeTag: typeof import("
|
|
137
|
-
isJSDocPropertyTag: typeof import("
|
|
138
|
-
isJSDocProtectedTag: typeof import("
|
|
139
|
-
isJSDocPublicTag: typeof import("
|
|
140
|
-
isJSDocReadonlyTag: typeof import("
|
|
141
|
-
isJSDocReturnTag: typeof import("
|
|
142
|
-
isJSDocSatisfiesTag: typeof import("
|
|
143
|
-
isJSDocSeeTag: typeof import("
|
|
144
|
-
isJSDocSignature: typeof import("
|
|
145
|
-
isJSDocTemplateTag: typeof import("
|
|
146
|
-
isJSDocThisTag: typeof import("
|
|
147
|
-
isJSDocThrowsTag: typeof import("
|
|
148
|
-
isJSDocTypedefTag: typeof import("
|
|
149
|
-
isJSDocTypeExpression: typeof import("
|
|
150
|
-
isJSDocTypeLiteral: typeof import("
|
|
151
|
-
isJSDocTypeTag: typeof import("
|
|
152
|
-
isJSDocUnknownTag: typeof import("
|
|
153
|
-
isJSDocUnknownType: typeof import("
|
|
154
|
-
isJSDocVariadicType: typeof import("
|
|
155
|
-
isJsxAttribute: typeof import("
|
|
156
|
-
isJsxAttributeLike: typeof import("
|
|
157
|
-
isJsxAttributes: typeof import("
|
|
158
|
-
isJsxCallLike: typeof import("
|
|
159
|
-
isJsxChild: typeof import("
|
|
160
|
-
isJsxClosingElement: typeof import("
|
|
161
|
-
isJsxClosingFragment: typeof import("
|
|
162
|
-
isJsxElement: typeof import("
|
|
163
|
-
isJsxExpression: typeof import("
|
|
164
|
-
isJsxFragment: typeof import("
|
|
165
|
-
isJsxNamespacedName: typeof import("
|
|
166
|
-
isJsxOpeningElement: typeof import("
|
|
167
|
-
isJsxOpeningFragment: typeof import("
|
|
168
|
-
isJsxOpeningLikeElement: typeof import("
|
|
169
|
-
isJsxSelfClosingElement: typeof import("
|
|
170
|
-
isJsxSpreadAttribute: typeof import("
|
|
171
|
-
isJsxTagNameExpression: typeof import("
|
|
172
|
-
isJsxText: typeof import("
|
|
173
|
-
isLabeledStatement: typeof import("
|
|
174
|
-
isLeftHandSideExpression: typeof import("
|
|
175
|
-
isLiteralExpression: typeof import("
|
|
176
|
-
isLiteralTypeNode: typeof import("
|
|
177
|
-
isMappedTypeNode: typeof import("
|
|
178
|
-
isMemberName: typeof import("
|
|
179
|
-
isMetaProperty: typeof import("
|
|
180
|
-
isMethodDeclaration: typeof import("
|
|
181
|
-
isMethodSignature: typeof import("
|
|
182
|
-
isMinusToken: typeof import("
|
|
183
|
-
isMissingDeclaration: typeof import("
|
|
184
|
-
isModifier: typeof import("
|
|
185
|
-
isModifierLike: typeof import("
|
|
186
|
-
isModuleBlock: typeof import("
|
|
187
|
-
isModuleBody: typeof import("
|
|
188
|
-
isModuleDeclaration: typeof import("
|
|
189
|
-
isModuleExportName: typeof import("
|
|
190
|
-
isModuleName: typeof import("
|
|
191
|
-
isModuleReference: typeof import("
|
|
192
|
-
isNamedExportBindings: typeof import("
|
|
193
|
-
isNamedExports: typeof import("
|
|
194
|
-
isNamedImportBindings: typeof import("
|
|
195
|
-
isNamedImports: typeof import("
|
|
196
|
-
isNamedTupleMember: typeof import("
|
|
197
|
-
isNamespaceExport: typeof import("
|
|
198
|
-
isNamespaceExportDeclaration: typeof import("
|
|
199
|
-
isNamespaceImport: typeof import("
|
|
200
|
-
isNewExpression: typeof import("
|
|
201
|
-
isNonNullChain: typeof import("
|
|
202
|
-
isNonNullExpression: typeof import("
|
|
203
|
-
isNoSubstitutionTemplateLiteral: typeof import("
|
|
204
|
-
isNotEmittedStatement: typeof import("
|
|
205
|
-
isNumericLiteral: typeof import("
|
|
206
|
-
isObjectBindingPattern: typeof import("
|
|
207
|
-
isObjectLiteralElement: typeof import("
|
|
208
|
-
isObjectLiteralElementLike: typeof import("
|
|
209
|
-
isObjectLiteralExpression: typeof import("
|
|
210
|
-
isOmittedExpression: typeof import("
|
|
211
|
-
isOptionalTypeNode: typeof import("
|
|
212
|
-
isParameter: typeof import("
|
|
213
|
-
isParenthesizedExpression: typeof import("
|
|
214
|
-
isParenthesizedTypeNode: typeof import("
|
|
215
|
-
isPartiallyEmittedExpression: typeof import("
|
|
216
|
-
isPlusToken: typeof import("
|
|
217
|
-
isPostfixUnaryExpression: typeof import("
|
|
218
|
-
isPrefixUnaryExpression: typeof import("
|
|
219
|
-
isPrivateIdentifier: typeof import("
|
|
220
|
-
isPropertyAccessChain: typeof import("
|
|
221
|
-
isPropertyAccessExpression: typeof import("
|
|
222
|
-
isPropertyAssignment: typeof import("
|
|
223
|
-
isPropertyDeclaration: typeof import("
|
|
224
|
-
isPropertyName: typeof import("
|
|
225
|
-
isPropertySignature: typeof import("
|
|
226
|
-
isQualifiedName: typeof import("
|
|
227
|
-
isQuestionDotToken: typeof import("
|
|
228
|
-
isQuestionToken: typeof import("
|
|
229
|
-
isRegularExpressionLiteral: typeof import("
|
|
230
|
-
isRestTypeNode: typeof import("
|
|
231
|
-
isReturnStatement: typeof import("
|
|
232
|
-
isSatisfiesExpression: typeof import("
|
|
233
|
-
isSemicolonClassElement: typeof import("
|
|
234
|
-
isSetAccessor: typeof import("
|
|
235
|
-
isSetAccessorDeclaration: typeof import("
|
|
236
|
-
isShorthandPropertyAssignment: typeof import("
|
|
237
|
-
isSourceFile: typeof import("
|
|
238
|
-
isSpreadAssignment: typeof import("
|
|
239
|
-
isSpreadElement: typeof import("
|
|
240
|
-
isStatement: typeof import("
|
|
241
|
-
isStringLiteral: typeof import("
|
|
242
|
-
isSwitchStatement: typeof import("
|
|
243
|
-
isSyntheticExpression: typeof import("
|
|
244
|
-
isTaggedTemplateExpression: typeof import("
|
|
245
|
-
isTemplateExpression: typeof import("
|
|
246
|
-
isTemplateHead: typeof import("
|
|
247
|
-
isTemplateLiteral: typeof import("
|
|
248
|
-
isTemplateLiteralToken: typeof import("
|
|
249
|
-
isTemplateLiteralTypeNode: typeof import("
|
|
250
|
-
isTemplateLiteralTypeSpan: typeof import("
|
|
251
|
-
isTemplateMiddle: typeof import("
|
|
252
|
-
isTemplateSpan: typeof import("
|
|
253
|
-
isTemplateTail: typeof import("
|
|
254
|
-
isThisTypeNode: typeof import("
|
|
255
|
-
isThrowStatement: typeof import("
|
|
256
|
-
isTryStatement: typeof import("
|
|
257
|
-
isTupleTypeNode: typeof import("
|
|
258
|
-
isTypeAliasDeclaration: typeof import("
|
|
259
|
-
isTypeAssertionExpression: typeof import("
|
|
260
|
-
isTypeElement: typeof import("
|
|
261
|
-
isTypeLiteralNode: typeof import("
|
|
262
|
-
isTypeNode: typeof import("
|
|
263
|
-
isTypeOfExpression: typeof import("
|
|
264
|
-
isTypeOnlyExportDeclaration: typeof import("
|
|
265
|
-
isTypeOnlyImportDeclaration: typeof import("
|
|
266
|
-
isTypeOnlyImportOrExportDeclaration: typeof import("
|
|
267
|
-
isTypeOperatorNode: typeof import("
|
|
268
|
-
isTypeParameterDeclaration: typeof import("
|
|
269
|
-
isTypePredicateNode: typeof import("
|
|
270
|
-
isTypeQueryNode: typeof import("
|
|
271
|
-
isTypeReferenceNode: typeof import("
|
|
272
|
-
isUnionTypeNode: typeof import("
|
|
273
|
-
isVariableDeclaration: typeof import("
|
|
274
|
-
isVariableDeclarationList: typeof import("
|
|
275
|
-
isVariableStatement: typeof import("
|
|
276
|
-
isVoidExpression: typeof import("
|
|
277
|
-
isWhileStatement: typeof import("
|
|
278
|
-
isWithStatement: typeof import("
|
|
279
|
-
isYieldExpression: typeof import("
|
|
98
|
+
isIfStatement: typeof import("./main.ts").isIfStatement;
|
|
99
|
+
isImportAttribute: typeof import("./main.ts").isImportAttribute;
|
|
100
|
+
isImportAttributeName: typeof import("./main.ts").isImportAttributeName;
|
|
101
|
+
isImportAttributes: typeof import("./main.ts").isImportAttributes;
|
|
102
|
+
isImportClause: typeof import("./main.ts").isImportClause;
|
|
103
|
+
isImportDeclaration: typeof import("./main.ts").isImportDeclaration;
|
|
104
|
+
isImportEqualsDeclaration: typeof import("./main.ts").isImportEqualsDeclaration;
|
|
105
|
+
isImportSpecifier: typeof import("./main.ts").isImportSpecifier;
|
|
106
|
+
isImportTypeNode: typeof import("./main.ts").isImportTypeNode;
|
|
107
|
+
isIndexedAccessTypeNode: typeof import("./main.ts").isIndexedAccessTypeNode;
|
|
108
|
+
isIndexSignatureDeclaration: typeof import("./main.ts").isIndexSignatureDeclaration;
|
|
109
|
+
isInferTypeNode: typeof import("./main.ts").isInferTypeNode;
|
|
110
|
+
isInterfaceDeclaration: typeof import("./main.ts").isInterfaceDeclaration;
|
|
111
|
+
isIntersectionTypeNode: typeof import("./main.ts").isIntersectionTypeNode;
|
|
112
|
+
isJSDoc: typeof import("./main.ts").isJSDoc;
|
|
113
|
+
isJSDocAllType: typeof import("./main.ts").isJSDocAllType;
|
|
114
|
+
isJSDocAugmentsTag: typeof import("./main.ts").isJSDocAugmentsTag;
|
|
115
|
+
isJSDocAuthorTag: typeof import("./main.ts").isJSDocAuthorTag;
|
|
116
|
+
isJSDocCallbackTag: typeof import("./main.ts").isJSDocCallbackTag;
|
|
117
|
+
isJSDocClassTag: typeof import("./main.ts").isJSDocClassTag;
|
|
118
|
+
isJSDocDeprecatedTag: typeof import("./main.ts").isJSDocDeprecatedTag;
|
|
119
|
+
isJSDocEnumTag: typeof import("./main.ts").isJSDocEnumTag;
|
|
120
|
+
isJSDocFunctionType: typeof import("./main.ts").isJSDocFunctionType;
|
|
121
|
+
isJSDocImplementsTag: typeof import("./main.ts").isJSDocImplementsTag;
|
|
122
|
+
isJSDocImportTag: typeof import("./main.ts").isJSDocImportTag;
|
|
123
|
+
isJSDocLink: typeof import("./main.ts").isJSDocLink;
|
|
124
|
+
isJSDocLinkCode: typeof import("./main.ts").isJSDocLinkCode;
|
|
125
|
+
isJSDocLinkPlain: typeof import("./main.ts").isJSDocLinkPlain;
|
|
126
|
+
isJSDocMemberName: typeof import("./main.ts").isJSDocMemberName;
|
|
127
|
+
isJSDocNamepathType: typeof import("./main.ts").isJSDocNamepathType;
|
|
128
|
+
isJSDocNameReference: typeof import("./main.ts").isJSDocNameReference;
|
|
129
|
+
isJSDocNonNullableType: typeof import("./main.ts").isJSDocNonNullableType;
|
|
130
|
+
isJSDocNullableType: typeof import("./main.ts").isJSDocNullableType;
|
|
131
|
+
isJSDocOptionalType: typeof import("./main.ts").isJSDocOptionalType;
|
|
132
|
+
isJSDocOverloadTag: typeof import("./main.ts").isJSDocOverloadTag;
|
|
133
|
+
isJSDocOverrideTag: typeof import("./main.ts").isJSDocOverrideTag;
|
|
134
|
+
isJSDocParameterTag: typeof import("./main.ts").isJSDocParameterTag;
|
|
135
|
+
isJSDocPrivateTag: typeof import("./main.ts").isJSDocPrivateTag;
|
|
136
|
+
isJSDocPropertyLikeTag: typeof import("./main.ts").isJSDocPropertyLikeTag;
|
|
137
|
+
isJSDocPropertyTag: typeof import("./main.ts").isJSDocPropertyTag;
|
|
138
|
+
isJSDocProtectedTag: typeof import("./main.ts").isJSDocProtectedTag;
|
|
139
|
+
isJSDocPublicTag: typeof import("./main.ts").isJSDocPublicTag;
|
|
140
|
+
isJSDocReadonlyTag: typeof import("./main.ts").isJSDocReadonlyTag;
|
|
141
|
+
isJSDocReturnTag: typeof import("./main.ts").isJSDocReturnTag;
|
|
142
|
+
isJSDocSatisfiesTag: typeof import("./main.ts").isJSDocSatisfiesTag;
|
|
143
|
+
isJSDocSeeTag: typeof import("./main.ts").isJSDocSeeTag;
|
|
144
|
+
isJSDocSignature: typeof import("./main.ts").isJSDocSignature;
|
|
145
|
+
isJSDocTemplateTag: typeof import("./main.ts").isJSDocTemplateTag;
|
|
146
|
+
isJSDocThisTag: typeof import("./main.ts").isJSDocThisTag;
|
|
147
|
+
isJSDocThrowsTag: typeof import("./main.ts").isJSDocThrowsTag;
|
|
148
|
+
isJSDocTypedefTag: typeof import("./main.ts").isJSDocTypedefTag;
|
|
149
|
+
isJSDocTypeExpression: typeof import("./main.ts").isJSDocTypeExpression;
|
|
150
|
+
isJSDocTypeLiteral: typeof import("./main.ts").isJSDocTypeLiteral;
|
|
151
|
+
isJSDocTypeTag: typeof import("./main.ts").isJSDocTypeTag;
|
|
152
|
+
isJSDocUnknownTag: typeof import("./main.ts").isJSDocUnknownTag;
|
|
153
|
+
isJSDocUnknownType: typeof import("./main.ts").isJSDocUnknownType;
|
|
154
|
+
isJSDocVariadicType: typeof import("./main.ts").isJSDocVariadicType;
|
|
155
|
+
isJsxAttribute: typeof import("./main.ts").isJsxAttribute;
|
|
156
|
+
isJsxAttributeLike: typeof import("./main.ts").isJsxAttributeLike;
|
|
157
|
+
isJsxAttributes: typeof import("./main.ts").isJsxAttributes;
|
|
158
|
+
isJsxCallLike: typeof import("./main.ts").isJsxCallLike;
|
|
159
|
+
isJsxChild: typeof import("./main.ts").isJsxChild;
|
|
160
|
+
isJsxClosingElement: typeof import("./main.ts").isJsxClosingElement;
|
|
161
|
+
isJsxClosingFragment: typeof import("./main.ts").isJsxClosingFragment;
|
|
162
|
+
isJsxElement: typeof import("./main.ts").isJsxElement;
|
|
163
|
+
isJsxExpression: typeof import("./main.ts").isJsxExpression;
|
|
164
|
+
isJsxFragment: typeof import("./main.ts").isJsxFragment;
|
|
165
|
+
isJsxNamespacedName: typeof import("./main.ts").isJsxNamespacedName;
|
|
166
|
+
isJsxOpeningElement: typeof import("./main.ts").isJsxOpeningElement;
|
|
167
|
+
isJsxOpeningFragment: typeof import("./main.ts").isJsxOpeningFragment;
|
|
168
|
+
isJsxOpeningLikeElement: typeof import("./main.ts").isJsxOpeningLikeElement;
|
|
169
|
+
isJsxSelfClosingElement: typeof import("./main.ts").isJsxSelfClosingElement;
|
|
170
|
+
isJsxSpreadAttribute: typeof import("./main.ts").isJsxSpreadAttribute;
|
|
171
|
+
isJsxTagNameExpression: typeof import("./main.ts").isJsxTagNameExpression;
|
|
172
|
+
isJsxText: typeof import("./main.ts").isJsxText;
|
|
173
|
+
isLabeledStatement: typeof import("./main.ts").isLabeledStatement;
|
|
174
|
+
isLeftHandSideExpression: typeof import("./main.ts").isLeftHandSideExpression;
|
|
175
|
+
isLiteralExpression: typeof import("./main.ts").isLiteralExpression;
|
|
176
|
+
isLiteralTypeNode: typeof import("./main.ts").isLiteralTypeNode;
|
|
177
|
+
isMappedTypeNode: typeof import("./main.ts").isMappedTypeNode;
|
|
178
|
+
isMemberName: typeof import("./main.ts").isMemberName;
|
|
179
|
+
isMetaProperty: typeof import("./main.ts").isMetaProperty;
|
|
180
|
+
isMethodDeclaration: typeof import("./main.ts").isMethodDeclaration;
|
|
181
|
+
isMethodSignature: typeof import("./main.ts").isMethodSignature;
|
|
182
|
+
isMinusToken: typeof import("./main.ts").isMinusToken;
|
|
183
|
+
isMissingDeclaration: typeof import("./main.ts").isMissingDeclaration;
|
|
184
|
+
isModifier: typeof import("./main.ts").isModifier;
|
|
185
|
+
isModifierLike: typeof import("./main.ts").isModifierLike;
|
|
186
|
+
isModuleBlock: typeof import("./main.ts").isModuleBlock;
|
|
187
|
+
isModuleBody: typeof import("./main.ts").isModuleBody;
|
|
188
|
+
isModuleDeclaration: typeof import("./main.ts").isModuleDeclaration;
|
|
189
|
+
isModuleExportName: typeof import("./main.ts").isModuleExportName;
|
|
190
|
+
isModuleName: typeof import("./main.ts").isModuleName;
|
|
191
|
+
isModuleReference: typeof import("./main.ts").isModuleReference;
|
|
192
|
+
isNamedExportBindings: typeof import("./main.ts").isNamedExportBindings;
|
|
193
|
+
isNamedExports: typeof import("./main.ts").isNamedExports;
|
|
194
|
+
isNamedImportBindings: typeof import("./main.ts").isNamedImportBindings;
|
|
195
|
+
isNamedImports: typeof import("./main.ts").isNamedImports;
|
|
196
|
+
isNamedTupleMember: typeof import("./main.ts").isNamedTupleMember;
|
|
197
|
+
isNamespaceExport: typeof import("./main.ts").isNamespaceExport;
|
|
198
|
+
isNamespaceExportDeclaration: typeof import("./main.ts").isNamespaceExportDeclaration;
|
|
199
|
+
isNamespaceImport: typeof import("./main.ts").isNamespaceImport;
|
|
200
|
+
isNewExpression: typeof import("./main.ts").isNewExpression;
|
|
201
|
+
isNonNullChain: typeof import("./main.ts").isNonNullChain;
|
|
202
|
+
isNonNullExpression: typeof import("./main.ts").isNonNullExpression;
|
|
203
|
+
isNoSubstitutionTemplateLiteral: typeof import("./main.ts").isNoSubstitutionTemplateLiteral;
|
|
204
|
+
isNotEmittedStatement: typeof import("./main.ts").isNotEmittedStatement;
|
|
205
|
+
isNumericLiteral: typeof import("./main.ts").isNumericLiteral;
|
|
206
|
+
isObjectBindingPattern: typeof import("./main.ts").isObjectBindingPattern;
|
|
207
|
+
isObjectLiteralElement: typeof import("./main.ts").isObjectLiteralElement;
|
|
208
|
+
isObjectLiteralElementLike: typeof import("./main.ts").isObjectLiteralElementLike;
|
|
209
|
+
isObjectLiteralExpression: typeof import("./main.ts").isObjectLiteralExpression;
|
|
210
|
+
isOmittedExpression: typeof import("./main.ts").isOmittedExpression;
|
|
211
|
+
isOptionalTypeNode: typeof import("./main.ts").isOptionalTypeNode;
|
|
212
|
+
isParameter: typeof import("./main.ts").isParameter;
|
|
213
|
+
isParenthesizedExpression: typeof import("./main.ts").isParenthesizedExpression;
|
|
214
|
+
isParenthesizedTypeNode: typeof import("./main.ts").isParenthesizedTypeNode;
|
|
215
|
+
isPartiallyEmittedExpression: typeof import("./main.ts").isPartiallyEmittedExpression;
|
|
216
|
+
isPlusToken: typeof import("./main.ts").isPlusToken;
|
|
217
|
+
isPostfixUnaryExpression: typeof import("./main.ts").isPostfixUnaryExpression;
|
|
218
|
+
isPrefixUnaryExpression: typeof import("./main.ts").isPrefixUnaryExpression;
|
|
219
|
+
isPrivateIdentifier: typeof import("./main.ts").isPrivateIdentifier;
|
|
220
|
+
isPropertyAccessChain: typeof import("./main.ts").isPropertyAccessChain;
|
|
221
|
+
isPropertyAccessExpression: typeof import("./main.ts").isPropertyAccessExpression;
|
|
222
|
+
isPropertyAssignment: typeof import("./main.ts").isPropertyAssignment;
|
|
223
|
+
isPropertyDeclaration: typeof import("./main.ts").isPropertyDeclaration;
|
|
224
|
+
isPropertyName: typeof import("./main.ts").isPropertyName;
|
|
225
|
+
isPropertySignature: typeof import("./main.ts").isPropertySignature;
|
|
226
|
+
isQualifiedName: typeof import("./main.ts").isQualifiedName;
|
|
227
|
+
isQuestionDotToken: typeof import("./main.ts").isQuestionDotToken;
|
|
228
|
+
isQuestionToken: typeof import("./main.ts").isQuestionToken;
|
|
229
|
+
isRegularExpressionLiteral: typeof import("./main.ts").isRegularExpressionLiteral;
|
|
230
|
+
isRestTypeNode: typeof import("./main.ts").isRestTypeNode;
|
|
231
|
+
isReturnStatement: typeof import("./main.ts").isReturnStatement;
|
|
232
|
+
isSatisfiesExpression: typeof import("./main.ts").isSatisfiesExpression;
|
|
233
|
+
isSemicolonClassElement: typeof import("./main.ts").isSemicolonClassElement;
|
|
234
|
+
isSetAccessor: typeof import("./main.ts").isSetAccessor;
|
|
235
|
+
isSetAccessorDeclaration: typeof import("./main.ts").isSetAccessorDeclaration;
|
|
236
|
+
isShorthandPropertyAssignment: typeof import("./main.ts").isShorthandPropertyAssignment;
|
|
237
|
+
isSourceFile: typeof import("./main.ts").isSourceFile;
|
|
238
|
+
isSpreadAssignment: typeof import("./main.ts").isSpreadAssignment;
|
|
239
|
+
isSpreadElement: typeof import("./main.ts").isSpreadElement;
|
|
240
|
+
isStatement: typeof import("./main.ts").isStatement;
|
|
241
|
+
isStringLiteral: typeof import("./main.ts").isStringLiteral;
|
|
242
|
+
isSwitchStatement: typeof import("./main.ts").isSwitchStatement;
|
|
243
|
+
isSyntheticExpression: typeof import("./main.ts").isSyntheticExpression;
|
|
244
|
+
isTaggedTemplateExpression: typeof import("./main.ts").isTaggedTemplateExpression;
|
|
245
|
+
isTemplateExpression: typeof import("./main.ts").isTemplateExpression;
|
|
246
|
+
isTemplateHead: typeof import("./main.ts").isTemplateHead;
|
|
247
|
+
isTemplateLiteral: typeof import("./main.ts").isTemplateLiteral;
|
|
248
|
+
isTemplateLiteralToken: typeof import("./main.ts").isTemplateLiteralToken;
|
|
249
|
+
isTemplateLiteralTypeNode: typeof import("./main.ts").isTemplateLiteralTypeNode;
|
|
250
|
+
isTemplateLiteralTypeSpan: typeof import("./main.ts").isTemplateLiteralTypeSpan;
|
|
251
|
+
isTemplateMiddle: typeof import("./main.ts").isTemplateMiddle;
|
|
252
|
+
isTemplateSpan: typeof import("./main.ts").isTemplateSpan;
|
|
253
|
+
isTemplateTail: typeof import("./main.ts").isTemplateTail;
|
|
254
|
+
isThisTypeNode: typeof import("./main.ts").isThisTypeNode;
|
|
255
|
+
isThrowStatement: typeof import("./main.ts").isThrowStatement;
|
|
256
|
+
isTryStatement: typeof import("./main.ts").isTryStatement;
|
|
257
|
+
isTupleTypeNode: typeof import("./main.ts").isTupleTypeNode;
|
|
258
|
+
isTypeAliasDeclaration: typeof import("./main.ts").isTypeAliasDeclaration;
|
|
259
|
+
isTypeAssertionExpression: typeof import("./main.ts").isTypeAssertionExpression;
|
|
260
|
+
isTypeElement: typeof import("./main.ts").isTypeElement;
|
|
261
|
+
isTypeLiteralNode: typeof import("./main.ts").isTypeLiteralNode;
|
|
262
|
+
isTypeNode: typeof import("./main.ts").isTypeNode;
|
|
263
|
+
isTypeOfExpression: typeof import("./main.ts").isTypeOfExpression;
|
|
264
|
+
isTypeOnlyExportDeclaration: typeof import("./main.ts").isTypeOnlyExportDeclaration;
|
|
265
|
+
isTypeOnlyImportDeclaration: typeof import("./main.ts").isTypeOnlyImportDeclaration;
|
|
266
|
+
isTypeOnlyImportOrExportDeclaration: typeof import("./main.ts").isTypeOnlyImportOrExportDeclaration;
|
|
267
|
+
isTypeOperatorNode: typeof import("./main.ts").isTypeOperatorNode;
|
|
268
|
+
isTypeParameterDeclaration: typeof import("./main.ts").isTypeParameterDeclaration;
|
|
269
|
+
isTypePredicateNode: typeof import("./main.ts").isTypePredicateNode;
|
|
270
|
+
isTypeQueryNode: typeof import("./main.ts").isTypeQueryNode;
|
|
271
|
+
isTypeReferenceNode: typeof import("./main.ts").isTypeReferenceNode;
|
|
272
|
+
isUnionTypeNode: typeof import("./main.ts").isUnionTypeNode;
|
|
273
|
+
isVariableDeclaration: typeof import("./main.ts").isVariableDeclaration;
|
|
274
|
+
isVariableDeclarationList: typeof import("./main.ts").isVariableDeclarationList;
|
|
275
|
+
isVariableStatement: typeof import("./main.ts").isVariableStatement;
|
|
276
|
+
isVoidExpression: typeof import("./main.ts").isVoidExpression;
|
|
277
|
+
isWhileStatement: typeof import("./main.ts").isWhileStatement;
|
|
278
|
+
isWithStatement: typeof import("./main.ts").isWithStatement;
|
|
279
|
+
isYieldExpression: typeof import("./main.ts").isYieldExpression;
|
|
280
280
|
};
|
|
281
281
|
export default _default;
|
|
282
|
+
export * from '../generated/assertions.ts';
|
package/lib/main.js
CHANGED
package/lib/main.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.js","sourceRoot":"","sources":["main.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,EAAE,EACjB,YAAY,EACZ,YAAY,GACZ,MAAM,4BAA4B,CAAC;AACpC,OAAO,MAAM,MAAM,oBAAoB,CAAC;AAQxC,OAAO,EAAE,MAAM,YAAY,CAAC;AAE5B,MAAM,UAAU,gBAAgB,CAC/B,IAAU,EACV,IAAa,EACb,OAAwB;IAExB,YAAY,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAE5B,MAAM,CAAC,KAAK,CACX,IAAI,CAAC,IAAI,EACT,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,YAAY,EAC7D,OAAO,CACP,CAAC;AACH,CAAC;AAED,MAAM,UAAU,uBAAuB,CACtC,KAAW,EACX,aAA4B,EAC5B,OAAwB;IAExB,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;IAE/C,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;IAExD,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,EAAE,aAAa,EAAE,OAAO,CAAC,CAAC;AAClD,CAAC;AAED,MAAM,UAAU,oBAAoB,CACnC,KAAW,EACX,QAAW,EACX,OAAwB;IAExB,YAAY,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IAE7B,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC;AACpD,CAAC;AAED,MAAM,UAAU,WAAW,CAC1B,KAAW,EACX,OAAwB;IAExB,oBAAoB,CAAC,KAAK,EAAE,WAAW,EAAE,OAAO,CAAC,CAAC;AACnD,CAAC;AAED,eAAe;IACd,GAAG,SAAS;IACZ,gBAAgB;IAChB,uBAAuB;IACvB,oBAAoB;IACpB,WAAW;CACX,CAAC"}
|
|
1
|
+
{"version":3,"file":"main.js","sourceRoot":"","sources":["main.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,EAAE,EACjB,YAAY,EACZ,YAAY,GACZ,MAAM,4BAA4B,CAAC;AACpC,OAAO,MAAM,MAAM,oBAAoB,CAAC;AAQxC,OAAO,EAAE,MAAM,YAAY,CAAC;AAE5B,MAAM,UAAU,gBAAgB,CAC/B,IAAU,EACV,IAAa,EACb,OAAwB;IAExB,YAAY,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAE5B,MAAM,CAAC,KAAK,CACX,IAAI,CAAC,IAAI,EACT,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,YAAY,EAC7D,OAAO,CACP,CAAC;AACH,CAAC;AAED,MAAM,UAAU,uBAAuB,CACtC,KAAW,EACX,aAA4B,EAC5B,OAAwB;IAExB,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;IAE/C,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;IAExD,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,EAAE,aAAa,EAAE,OAAO,CAAC,CAAC;AAClD,CAAC;AAED,MAAM,UAAU,oBAAoB,CACnC,KAAW,EACX,QAAW,EACX,OAAwB;IAExB,YAAY,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IAE7B,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC;AACpD,CAAC;AAED,MAAM,UAAU,WAAW,CAC1B,KAAW,EACX,OAAwB;IAExB,oBAAoB,CAAC,KAAK,EAAE,WAAW,EAAE,OAAO,CAAC,CAAC;AACnD,CAAC;AAED,eAAe;IACd,GAAG,SAAS;IACZ,gBAAgB;IAChB,uBAAuB;IACvB,oBAAoB;IACpB,WAAW;CACX,CAAC;AAEF,cAAc,4BAA4B,CAAC"}
|
package/lib/main.ts
CHANGED
package/package.json
CHANGED