interface InitResponse {
    env?: "production" | "development";
    exclude?: string[];
    locale: string;
    order?: string;
    platform?: { name: "android" | "windows" | "ios" | "macos" };
    stepDefinitions: Record<string, any>;
}

Properties

env?: "production" | "development"

optional override for the running override

exclude?: string[]

ability to exclude screens

locale: string
order?: string

ability to override the screen order

platform?: { name: "android" | "windows" | "ios" | "macos" }
stepDefinitions: Record<string, any>