Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/acorn/dist/acorn.d.mts

    rd565449 r0c6b92a  
    404404  specifiers: Array<ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier>
    405405  source: Literal
     406  attributes: Array<ImportAttribute>
    406407}
    407408
     
    420421  type: "ImportNamespaceSpecifier"
    421422  local: Identifier
     423}
     424
     425export interface ImportAttribute extends Node {
     426  type: "ImportAttribute"
     427  key: Identifier | Literal
     428  value: Literal
    422429}
    423430
     
    427434  specifiers: Array<ExportSpecifier>
    428435  source?: Literal | null
     436  attributes: Array<ImportAttribute>
    429437}
    430438
     
    455463  source: Literal
    456464  exported?: Identifier | Literal | null
     465  attributes: Array<ImportAttribute>
    457466}
    458467
     
    470479  type: "ImportExpression"
    471480  source: Expression
     481  options: Expression | null
    472482}
    473483
     
    563573| ExportAllDeclaration
    564574
    565 export type AnyNode = Statement | Expression | Declaration | ModuleDeclaration | Literal | Program | SwitchCase | CatchClause | Property | Super | SpreadElement | TemplateElement | AssignmentProperty | ObjectPattern | ArrayPattern | RestElement | AssignmentPattern | ClassBody | MethodDefinition | MetaProperty | ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier | ExportSpecifier | AnonymousFunctionDeclaration | AnonymousClassDeclaration | PropertyDefinition | PrivateIdentifier | StaticBlock | VariableDeclarator
     575export 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
    566576
    567577export function parse(input: string, options: Options): Program
Note: See TracChangeset for help on using the changeset viewer.