UNPKG

js-ast-parser

Version:
14 lines (13 loc) 501 B
import { IdentifierLiteralExpression } from "./IdentifierLiteralExpression"; import { AstNode } from "../AstNode"; import { StringLiteralExpression } from "./StringLiteralExpression"; import { Expression } from "./Expression"; export declare class ObjectLiteralExpression extends Expression { type: string; code: any; properties: Array<{ key: StringLiteralExpression | IdentifierLiteralExpression; value: AstNode; }>; constructor(currentToken: any); }