UNPKG

create-react-app-ts

Version:

Scalable starter boilerplate for React applications

12 lines (9 loc) 211 B
import { ExampleActionType } from './enums'; export interface ExampleState { error: boolean; loading: boolean; } export interface ExampleAction { type: ExampleActionType; payload: Partial<ExampleState>; }