Interface IBaseConfig

interface IBaseConfig {
    app: { name: string };
    functions: { executionMode: EXECUTION_MODE };
    mode: "development" | "production" | "test";
}

Hierarchy (View Summary)

Properties

Properties

app: { name: string }
functions: { executionMode: EXECUTION_MODE }
mode: "development" | "production" | "test"