// global.d.ts declare interface IItem { id: number; title: string; description: string; completed: boolean; }