Changeset 0c6b92a for imaps-frontend/node_modules/acorn/dist/acorn.d.ts
- Timestamp:
- 12/12/24 17:06:06 (5 weeks ago)
- Branches:
- main
- Parents:
- d565449
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/acorn/dist/acorn.d.ts
rd565449 r0c6b92a 404 404 specifiers: Array<ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier> 405 405 source: Literal 406 attributes: Array<ImportAttribute> 406 407 } 407 408 … … 420 421 type: "ImportNamespaceSpecifier" 421 422 local: Identifier 423 } 424 425 export interface ImportAttribute extends Node { 426 type: "ImportAttribute" 427 key: Identifier | Literal 428 value: Literal 422 429 } 423 430 … … 427 434 specifiers: Array<ExportSpecifier> 428 435 source?: Literal | null 436 attributes: Array<ImportAttribute> 429 437 } 430 438 … … 455 463 source: Literal 456 464 exported?: Identifier | Literal | null 465 attributes: Array<ImportAttribute> 457 466 } 458 467 … … 470 479 type: "ImportExpression" 471 480 source: Expression 481 options: Expression | null 472 482 } 473 483 … … 563 573 | ExportAllDeclaration 564 574 565 export type AnyNode = Statement | Expression | Declaration | ModuleDeclaration | Literal | Program | SwitchCase | CatchClause | Property | Super | SpreadElement | TemplateElement | AssignmentProperty | ObjectPattern | ArrayPattern | RestElement | AssignmentPattern | ClassBody | MethodDefinition | MetaProperty | Import Specifier | ImportDefaultSpecifier | ImportNamespaceSpecifier | ExportSpecifier | AnonymousFunctionDeclaration | AnonymousClassDeclaration | PropertyDefinition | PrivateIdentifier | StaticBlock | VariableDeclarator575 export type AnyNode = Statement | Expression | Declaration | ModuleDeclaration | Literal | Program | SwitchCase | CatchClause | Property | Super | SpreadElement | TemplateElement | AssignmentProperty | ObjectPattern | ArrayPattern | RestElement | AssignmentPattern | ClassBody | MethodDefinition | MetaProperty | ImportAttribute | ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier | ExportSpecifier | AnonymousFunctionDeclaration | AnonymousClassDeclaration | PropertyDefinition | PrivateIdentifier | StaticBlock | VariableDeclarator 566 576 567 577 export function parse(input: string, options: Options): Program
Note:
See TracChangeset
for help on using the changeset viewer.