interface FieldValuesQuery {
    currentValues: { [key: string]: string };
    inputValues?: FieldInputValues[];
    resource: any;
    scope?: string;
}

Hierarchy (View Summary)

Properties

currentValues: { [key: string]: string }
inputValues?: FieldInputValues[]

The input values to return on input, and the result from the consumer on output.

resource: any

Subscription containing information about the publisher/consumer and the current input values

scope?: string