gpt4 book ai didi

javascript - 向接口(interface)添加新属性

转载 作者:行者123 更新时间:2023-12-03 03:10:01 25 4
gpt4 key购买 nike

我有一个如下所示的 API 接口(interface)。我无法向它添加任何属性,因为它不在我的控制之下。但我需要在其中包含 bool 属性,例如 isPhotoSelected: boolean = false; 。你能告诉我该怎么做吗?

export interface LibraryItem {
id: string;
photoURL: string;
thumbnailURL: string;
fileName: string;
}

最佳答案

定义一个实现接口(interface)

export class DtoLibraryItem implements LibraryItem{
//need to declare all the properties of the interface here
isPhotoSelected: boolean
}

关于javascript - 向接口(interface)添加新属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46996116/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com