gpt4 book ai didi

Typescript - 具有任意数量键值的对象

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

我正在尝试编写一个接口(interface)来处理这样的数据:

interface SessionList {
appInfo: Object(string: string | null);
}

appInfo 下可能有 0 到多个项目。我正在尝试找到正确的语法,但没有运气 - 目前在:
appInfo: Object(string: string | null);
有任何想法吗?

最佳答案

任何一个

interface AppInfo {
[key: string]: string | null;
}

或者
Record<string, string | null>

更新:
let obj: { appInfo: Record<string, string | null> };

interface SessionList {
appInfo: Record<string, string | null>;
}

let obj: SessionList;

关于Typescript - 具有任意数量键值的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55844587/

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