UNPKG

redux-webpack-es6-boilerplate

Version:
11 lines (9 loc) 174 B
type FriendById = { id?: number, name: string }; // This is the model of our module state export type State = { friends: number[], friendsById: Array<FriendById> };