ConfigForMode<T>: T extends "fixed-return"
    ? FixedReturnGlidepathConfig
    : T extends "allocation-based"
        ? AllocationBasedGlidepathConfig
        : T extends "custom-waypoints"
            ? CustomWaypointsGlidepathConfig
            : T extends "stepped-return"
                ? SteppedReturnGlidepathConfig
                : never

Utility type to extract the configuration type for a specific glidepath mode.

Type Parameters

Generated using TypeDoc