core-cde
Version:
10 lines (9 loc) • 385 B
TypeScript
import { IChangeImageProps } from '../interfaces/IImageProps';
import { Action } from './Action';
export declare enum EImageActions {
changeParamsImage = "changeParamsImage"
}
export declare class ChangeParamsImageAction extends Action<IChangeImageProps> {
readonly type = EImageActions.changeParamsImage;
}
export declare type ImageActions = ChangeParamsImageAction;