UNPKG

302 BTypeScriptView Raw
1import { TypeConstant, ActionCreator, ActionCreatorTypeMetadata } from './type-helpers';
2/**
3 * @description get the "type literal" of a given action-creator
4 */
5export declare function getType<TType extends TypeConstant>(actionCreator: ActionCreator<TType> & ActionCreatorTypeMetadata<TType>): TType;