从未在d.ts中导出的​​ts-nameof包导入函数名称

时间:2017-06-21 09:36:53

标签: javascript typescript

我发现了一个有趣的包,想在我的打字稿应用程序中使用它: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错误。

1 个答案:

答案 0 :(得分:2)

将其添加到tsd.d.ts

/// <reference path="../node_modules/ts-nameof/ts-nameof.d.ts" />

确保将正确的路径放到node_modules