1 | import * as ts from 'typescript';
|
2 |
|
3 |
|
4 |
|
5 |
|
6 | export declare function isPropertyAccessExpression(node: ts.Node): node is ts.PropertyAccessExpression;
|
7 |
|
8 |
|
9 |
|
10 |
|
11 | export declare function isCallExpression(node: ts.Node): node is ts.CallExpression;
|
12 |
|
13 |
|
14 |
|
15 |
|
16 | export declare function isIdentifier(node: ts.Node): node is ts.Identifier;
|
17 |
|
18 |
|
19 |
|
20 |
|
21 | export declare function isVariableDeclaration(node: ts.Node): node is ts.VariableDeclaration;
|
22 |
|
23 |
|
24 |
|
25 |
|
26 | export declare function isExportAssignment(node: ts.Node): node is ts.ExportAssignment;
|
27 |
|
28 |
|
29 |
|
30 |
|
31 | export declare function isTaggedTemplateExpression(node: ts.Node): node is ts.TaggedTemplateExpression;
|
32 |
|
33 |
|
34 |
|
35 |
|
36 | export declare function isTemplateExpression(node: ts.Node): node is ts.TemplateExpression;
|
37 |
|
38 |
|
39 |
|
40 |
|
41 | export declare function isNoSubstitutionTemplateLiteral(node: ts.Node): node is ts.NoSubstitutionTemplateLiteral;
|