检查对象是否在运行时使用 TypeScript 实现接口
2022-08-30 05:26:49
我在运行时加载一个JSON配置文件,并使用接口来定义其预期结构:
interface EngineConfig {
pathplanner?: PathPlannerConfig;
debug?: DebugConfig;
...
}
interface PathPlannerConfig {
nbMaxIter?: number;
nbIterPerChunk?: number;
heuristic?: string;
}
interface DebugConfig {
logLevel?: number;
}
...
这使得访问各种属性变得方便,因为我可以使用自动完成等。
问:有没有办法使用此声明来检查我加载的文件的正确性?即我没有意外的属性?