FunctionExpression

[ Interface ]

export interface FunctionExpression extends baseValue {
    objectType: 'FunctionExpression';
    functionExpression: string;
}

Extends baseValue

Represents the value of a function expression.

Properties

Name

Type

Description

objectType

'FunctionExpression'

Defines the relevant parser.

FunctionExpression

string

The function expression that defines the value to be passed on.

FunctionExpression 1:

Available from version 1.12