// index.ts
/// <reference path="./enum.ts" />
const a = common.Country.CN;
// enum.ts
namespace common {
    export enum Country {
        CN = 0,
        US = 1,
    }
}
用ts-loader编译后总报错:
Uncaught ReferenceError: common is not defined
求解,为什么总是报未定义啊? 我头部已经声明了enum.ts了啊
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
闭关修行中......