Interface IParameter

Parameter for the function call.

interface IParameter {
    type: string;
    value: any;
}

Properties

Properties

type: string

Type of the value.

Actually, it stores result of the typeof statement.

value: any

Value of the parameter.