Interface EnvironmentSaaS

interface EnvironmentSaaS {
    apps: Apps;
    authentication?: {
        apiKey: string;
    };
    edition: "saas";
    host: string;
    mainApp: string;
}

Properties

apps: Apps
authentication?: {
    apiKey: string;
}

Type declaration

  • apiKey: string
edition: "saas"
host: string
mainApp: string