let-me-focus-browser/utils/types.ts
2026-08-08 17:55:56 +07:00

11 lines
161 B
TypeScript

export interface Todo {
id: string;
name: string;
completed: boolean;
}
export interface BlockedSite {
id: string;
url: string;
blocked: boolean;
}