zepio/app/types/todo.js

9 lines
108 B
JavaScript

// @flow
export type TodoType = {
id: string,
text: string,
editing: boolean,
createdAt: number
};