Interface Variables

Interface describing the shape of Variables which may be embedded within Operations. Variables are a simple key-value map, which can be deeply nested.

interface Variables {
    [key: string]: Variables | unknown;
}

Indexable

[key: string]: Variables | unknown

Index signature allowing keys to be of type string and values of type Variables or unknown.

Generated using TypeDoc