public static ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.StExportDeclaration WithExportClause(this ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.StExportDeclaration subject, ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.IStNamedExportBindings exportClause)
 {
     subject.exportClause = exportClause;
     return(subject);
 }
 public StExportDeclaration(ForgedOnce.TsLanguageServices.FullSyntaxTree.TransportModel.NodeFlags flags, System.Collections.Generic.List <ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.StDecorator> decorators, System.Collections.Generic.List <ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.IStModifier> modifiers, ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.IStDeclarationName name, System.Boolean isTypeOnly, ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.IStNamedExportBindings exportClause, ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.IStExpression moduleSpecifier) : base(flags, decorators, modifiers)
 {
     this.kind            = ForgedOnce.TsLanguageServices.FullSyntaxTree.TransportModel.SyntaxKind.ExportDeclaration;
     this.name            = name;
     this.isTypeOnly      = isTypeOnly;
     this.exportClause    = exportClause;
     this.moduleSpecifier = moduleSpecifier;
 }