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