Skip to content

Instantly share code, notes, and snippets.

@EvgenyParomov
EvgenyParomov / todo-list.ts
Last active May 22, 2025 20:28
Realy strongly typed todo-list
type Todo = {
id: number;
text: string;
completed: boolean;
};
// Утилиты
const createTodoList = (): [] => [];
const maxId = <List extends Todo[]>(list: List): number => {