@@ -2653,7 +2653,7 @@ export function createNodeFactory(flags: NodeFactoryFlags, baseFactory: BaseNode
2653
2653
// @api
2654
2654
function createImportTypeNode (
2655
2655
argument : TypeNode ,
2656
- attributes ?: ImportTypeAssertionContainer | ImportTypeAttributes ,
2656
+ attributes ?: ImportTypeAttributes ,
2657
2657
qualifier ?: EntityName ,
2658
2658
typeArguments ?: readonly TypeNode [ ] ,
2659
2659
isTypeOf = false ,
@@ -2672,7 +2672,7 @@ export function createNodeFactory(flags: NodeFactoryFlags, baseFactory: BaseNode
2672
2672
function updateImportTypeNode (
2673
2673
node : ImportTypeNode ,
2674
2674
argument : TypeNode ,
2675
- attributes : ImportTypeAssertionContainer | ImportTypeAttributes | undefined ,
2675
+ attributes : ImportTypeAttributes | undefined ,
2676
2676
qualifier : EntityName | undefined ,
2677
2677
typeArguments : readonly TypeNode [ ] | undefined ,
2678
2678
isTypeOf : boolean = node . isTypeOf ,
@@ -4706,7 +4706,7 @@ export function createNodeFactory(flags: NodeFactoryFlags, baseFactory: BaseNode
4706
4706
modifiers : readonly ModifierLike [ ] | undefined ,
4707
4707
importClause : ImportClause | undefined ,
4708
4708
moduleSpecifier : Expression ,
4709
- attributes : ImportAttributes | AssertClause | undefined ,
4709
+ attributes : ImportAttributes | undefined ,
4710
4710
) : ImportDeclaration {
4711
4711
const node = createBaseNode < ImportDeclaration > ( SyntaxKind . ImportDeclaration ) ;
4712
4712
node . modifiers = asNodeArray ( modifiers ) ;
@@ -4727,7 +4727,7 @@ export function createNodeFactory(flags: NodeFactoryFlags, baseFactory: BaseNode
4727
4727
modifiers : readonly ModifierLike [ ] | undefined ,
4728
4728
importClause : ImportClause | undefined ,
4729
4729
moduleSpecifier : Expression ,
4730
- attributes : ImportAttributes | AssertClause | undefined ,
4730
+ attributes : ImportAttributes | undefined ,
4731
4731
) {
4732
4732
return node . modifiers !== modifiers
4733
4733
|| node . importClause !== importClause
@@ -4972,7 +4972,7 @@ export function createNodeFactory(flags: NodeFactoryFlags, baseFactory: BaseNode
4972
4972
isTypeOnly : boolean ,
4973
4973
exportClause : NamedExportBindings | undefined ,
4974
4974
moduleSpecifier ?: Expression ,
4975
- attributes ?: AssertClause | ImportAttributes ,
4975
+ attributes ?: ImportAttributes ,
4976
4976
) {
4977
4977
const node = createBaseDeclaration < ExportDeclaration > ( SyntaxKind . ExportDeclaration ) ;
4978
4978
node . modifiers = asNodeArray ( modifiers ) ;
@@ -4996,7 +4996,7 @@ export function createNodeFactory(flags: NodeFactoryFlags, baseFactory: BaseNode
4996
4996
isTypeOnly : boolean ,
4997
4997
exportClause : NamedExportBindings | undefined ,
4998
4998
moduleSpecifier : Expression | undefined ,
4999
- attributes : AssertClause | ImportAttributes | undefined ,
4999
+ attributes : ImportAttributes | undefined ,
5000
5000
) {
5001
5001
return node . modifiers !== modifiers
5002
5002
|| node . isTypeOnly !== isTypeOnly
0 commit comments