Skip to content

Instantly share code, notes, and snippets.

@ctrlplusb
Created February 8, 2019 00:14
Show Gist options
  • Save ctrlplusb/d284544af20bc7b9e1c9a11e047c174f to your computer and use it in GitHub Desktop.
Save ctrlplusb/d284544af20bc7b9e1c9a11e047c174f to your computer and use it in GitHub Desktop.
type TodosModel = {
items: string[];
}
type NotificationModel = {
msg: string;
}
export type StoreModel = {
todos: TodosModel;
notification: NotificationModel;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment