I have an API interface
like below. I cannot add any property to it since it is not under my control.But I need to include boolean property like isPhotoSelected: boolean = false;
to it. Can you tell me how to do that?
export interface LibraryItem {
id: string;
photoURL: string;
thumbnailURL: string;
fileName: string;
}