zepio/app/types/todo.js

9 lines
109 B
JavaScript

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