Teleforge API Reference - v0.1.0
    Preparing search index...

    Interface ResolvedCoordinationConfig

    interface ResolvedCoordinationConfig {
        defaults: CoordinationDefaults;
        entryPoints: ResolvedCoordinationEntryPointMappings;
        flows: Record<string, FlowEntry>;
        resolveEntryPoint: (
            type: "command" | "button" | "deepLink",
            key: string,
        ) => string | undefined;
        resolveFlow: (flowId: string) => FlowEntry | undefined;
        resolveRoute: (path: string) => ResolvedRouteCoordinationConfig | undefined;
        resolveStep: (path: string, flowId?: string) => string | undefined;
        resolveStepRoute: (flowId: string, stepId: string) => string | undefined;
        routes: Record<string, ResolvedRouteCoordinationConfig>;
        validation: ValidationResult;
    }
    Index

    Properties

    entryPoints: ResolvedCoordinationEntryPointMappings
    flows: Record<string, FlowEntry>
    resolveEntryPoint: (
        type: "command" | "button" | "deepLink",
        key: string,
    ) => string | undefined
    resolveFlow: (flowId: string) => FlowEntry | undefined
    resolveRoute: (path: string) => ResolvedRouteCoordinationConfig | undefined
    resolveStep: (path: string, flowId?: string) => string | undefined
    resolveStepRoute: (flowId: string, stepId: string) => string | undefined
    routes: Record<string, ResolvedRouteCoordinationConfig>
    validation: ValidationResult