interface IQueryBody {
    context: undefined | Record<string, any>;
    type: "query" | "void";
    value: string;
}

Properties

Properties

context: undefined | Record<string, any>
type: "query" | "void"
value: string