Below is the Todo Model:
export interface Todo { id: number; title: string; }
Now, I want to use this in another typescript file: