A11 TypeScript API - v0.2.1
    Preparing search index...

    Interface ActionRegistryLike

    Minimal registry contract used to resolve a nested action by name.

    interface ActionRegistryLike {
        getHandler(actionName: string): StatusOr<ActionHandler>;
        getSchema(actionName: string): StatusOr<ActionSchema>;
    }
    Index