Type Alias ActionHandler<T>

ActionHandler<T>: T extends BuildInActionName
    ? BuildInActions[T]
    : ((...args: any[]) => any)

Type Parameters

  • T extends string