我是打字稿的新手,并尝试在打字稿2.2中使用jointjs定义文件。

这是github中的定义文件。
https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/jointjs/index.d.ts

导入jointjs到我使用的打字稿文件中

import { joint } from 'jointjs';


如何从index.d.ts文件调用类和函数?

最佳答案

JointJS库带有类型定义,因此您不必安装单独的类型,只需npm install --save jointjs就足够了。然后,您可以使用import并使用类似的库:

import * as joint from 'jointjs';

let circle = new joint.shapes.basic.Circle();

10-07 15:34