Source code

Revision control

Copy as Markdown

Other Tools

export interface Todo {
id: string;
title: string;
completed: boolean;
}