我发现了一个有趣的包,想在我的打字稿应用程序中使用它:https://github.com/dsherret/ts-nameof
但我无法导入nameof
功能。它不会在d.ts文件中导出:
declare module "ts-nameof" {
interface Api {
...
}
var func: Api;
export = func;
}
declare function nameof<T>(func?: (obj: T) => void): string;
declare function nameof(obj: Object | null | undefined): string;
declare namespace nameof {
function full<T>(periodIndex?: number): string;
function full(obj: Object | null | undefined, periodIndex?: number): string;
}
如何将nameof
函数导入我的打字稿模块?
import 'ts-nameof';
我发生了Uncaught ReferenceError: nameof is not defined
错误。
答案 0 :(得分:2)
将其添加到tsd.d.ts
:
/// <reference path="../node_modules/ts-nameof/ts-nameof.d.ts" />
确保将正确的路径放到node_modules