Interface ITestDataResult

interface ITestDataResult {
    currentSelections: CurrentSelections;
    message: string;
    name: string;
    status: boolean;
    timings: Timings;
    type: "meta" | "table" | "scalar" | "list";
}

Hierarchy

Properties

currentSelections: CurrentSelections
message: string
name: string
status: boolean
timings: Timings
type: "meta" | "table" | "scalar" | "list"