An immediately defined literal value.

Always contains a string value. In FunctionRef arguments and options, the expected type of the value may result in the value being further parsed as a boolean or a number by the function handler.

interface Literal {
    type: "literal";
    value: string;
}

Properties

Properties

type: "literal"
value: string