@tikoci/centrs
    Preparing search index...

    Interface ExecuteFanoutInternals

    Test/override seams; production callers pass nothing.

    interface ExecuteFanoutInternals {
        execute?: (
            resolved: ResolvedExecuteRequest,
        ) => Promise<ExecuteSuccessEnvelope>;
        expand?: (
            selection: TargetSelection,
            input: CdbSelectionResolveInput,
            env: Record<string, string | undefined>,
            config?: Record<string, string | undefined>,
        ) => Promise<CdbSelectionExpansion>;
        sleep?: (ms: number) => Promise<void>;
    }
    Index

    Properties

    execute?: (resolved: ResolvedExecuteRequest) => Promise<ExecuteSuccessEnvelope>
    expand?: (
        selection: TargetSelection,
        input: CdbSelectionResolveInput,
        env: Record<string, string | undefined>,
        config?: Record<string, string | undefined>,
    ) => Promise<CdbSelectionExpansion>
    sleep?: (ms: number) => Promise<void>