Skip to content

Instantly share code, notes, and snippets.

@ctrlplusb
Created February 8, 2019 00:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ctrlplusb/4fd41706b04ca4f7741afc49ebcf6914 to your computer and use it in GitHub Desktop.
Save ctrlplusb/4fd41706b04ca4f7741afc49ebcf6914 to your computer and use it in GitHub Desktop.
import { Action, Thunk } from 'easy-peasy';
type TodosModel = {
items: string[];
saved: Action<TodosModel, string>;
save: Thunk<TodosModel, string>; // 👈
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment