1

我想使用一个不写成模块的 npm lib

npm install "js-marker-clusterer" --save

这会安装一个我想要的 JS 文件:

./node_modules/js-marker-clusterer/src/markerclusterer.js

// this is the Class I want to export/import
function MarkerClusterer(map, opt_markers, opt_options) {
  // ...
}

我想在我的 TS 文件中扩展和使用这个类。根据 TS 文档,我可以声明 ashorthand ambient module来执行此操作,但我不确定将不同文件放在哪里。

速记环境模块

如果您不想在使用新模块之前花时间写出声明,您可以使用速记声明来快速开始。

declarations.d.ts (我把这个文件放在哪里?)

/// <reference path="node.d.ts"/>
declare module "hot-new-module";

来自速记模块的所有导入都将具有 any 类型。

import x, {y} from "hot-new-module";
x(y);

现在我有以下内容,但它不正确:

./src/app/shared/my-marker-clusterer.d.ts

/// <reference path="/node_modules/js-marker-clusterer/src/markerclusterer.js" />
// ERROR: typescript says *.js is an unsupported extension

declare module "js-marker-clusterer" {
  export class MarkerClusterer {
    constructor(map: any, opt_markers?: any, opt_options?: any);
    map_: any;
    markers_: any[];
    clusters_: any[];
    ready_: boolean;
    addMarkers(markers: any[], opt_nodraw: boolean) : void;
  }
}

/src/app/shared/my-marker-clusterer.ts

/// <reference path="./my-marker-clusterer.d.ts" />
import { MarkerClusterer } from 'js-marker-clusterer';

declare var google;

export class MyMarkerClusterer extends MarkerClusterer {
  constructor(map: any, opt_markers?: any, opt_options?: any) {
    super(map, opt_markers, opt_options);
  }

  addMarkers(markers, opt_nodraw) {
    super.addMarkers(markers, opt_nodraw)
    this.triggerClustersChanged()
  }
  triggerClustersChanged(){
    google.maps.event.trigger(this.map_, 'clustersChanged', this.clusters_);
  }
}

我正在使用rollupjs首选es2015模块

4

1 回答 1

0

好吧,我会被诅咒的,我上面发布的代码确实有效。我得到了下面的 TS TS6054 错误,但它仍然有效。

1 /// <reference path="/node_modules/js-marker-clusterer/src/markerclusterer.js" />
src/app/shared/my-marker-clusterer.d.ts(1,1): error TS6054: File '/node_modules/js-marker-clusterer/src/markerclusterer.js' has unsupported extension. The only supported extensions are '.ts', '.tsx', '.d.ts'.

我确实必须手动编辑 JS 文件并且export

export function MarkerClusterer(map, opt_markers, opt_options) {
   // ...
}

有没有办法在不编辑原始 JS 文件的情况下做同样的事情?

于 2016-09-30T20:13:25.240 回答