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