13 lines
253 B
TypeScript
13 lines
253 B
TypeScript
import { ImageGalleryActionType } from 'constants/imageGalleryActionType'
|
|
|
|
/**
|
|
* ImageGallery action interface
|
|
*
|
|
* @export
|
|
* @interface IImageGalleryAction
|
|
*/
|
|
export interface IImageGalleryAction {
|
|
payload: any,
|
|
type: ImageGalleryActionType
|
|
|
|
} |