zepio/app/types/todo.js

9 lines
109 B
JavaScript
Raw Normal View History

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