export interface ReducerData { contents: string[] } export type ReduxActionData = { type: any payload?: T } export type ReduxAction = (data: T) => ReduxActionData