HarmonyOS 鸿蒙Next arkts是否支持定义type
HarmonyOS 鸿蒙Next arkts是否支持定义type
export type SPAuthConfig{ debug:boolean; authInfoUniquekey: string; }
以上代码报 Object literals cannot be used as type declarations (arkts-no-obj-literals-as-types) <ArkTSCheck>错误
2 回复
支持自定义类型,关键字是 class
或者 interface
,而不是 type
修改成如下:
export interface SPAuthConfig{
debug:boolean;
authInfoUniquekey: string;
}
更多关于HarmonyOS 鸿蒙Next arkts是否支持定义type的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html