zepio/app/types/todo.js

9 lines
108 B
JavaScript
Raw Normal View History

2018-11-23 10:41:50 -08:00
// @flow
export type TodoType = {
id: string,
text: string,
editing: boolean,
createdAt: number
};