我想使用一个不写成模块的 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
模块