This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
resolver/app/reducers/imageGallery/IImageGalleryAction.ts

13 lines
261 B
TypeScript

import {ImageGalleryActionType} from 'constants/imageGalleryActionType'
/**
* ImageGallery action interface
*
* @export
* @interface IImageGalleryAction
*/
export interface IImageGalleryAction {
payload: any,
type: ImageGalleryActionType
}