UNPKG

@bengo.co/typescript-web-starter

Version:

A simple website project written in TypeScript. Use this as a starting point for your project.

21 lines (18 loc) 408 B
/** * TypeScript interfaces for dealing with App reducers */ import { AppFilters, Match } from "../../shared"; import { WishlistState } from "../components/pages/WishlistPage"; import { BenState } from "./ben"; export interface AppState { filters: AppFilters; matches: Match[]; ui: { isLoading: boolean; }; wishlist: WishlistState; } export interface RootState { app: AppState; ben: BenState; }