使用课程为第三方图书馆创建类型

时间:2019-09-10 10:04:15

标签: typescript typescript-typings

我有一个具有此ES6类签名的第三方库:

class Machine {
  constructor(options)
  static list(callback)
  create(options, callback)
}

我尝试为此类创建类型声明,但出现一些错误:

export declare class IMachine {
  public constructor(opts: MachineOptions)
  public static list(callback: (err?: Error, machines?: IMachine[]) => void): void
}

declare interface MachineOptions {
  name: string
}

用法:

const Machine: IMachine = require('lib')
Machine.list((err: Error, machines: IMachine[]) => { } //  error TS2576: Property 'list' is a static member of type 'IMachine'


const machine = new Machine({name: 'some name'}) // error TS2351: This expression is not constructable. Type 'IMachine' has no construct signatures.

我在这里做什么错了?

1 个答案:

答案 0 :(得分:2)

您的声明很好。问题是这一行:

const Machine: IMachine = require('lib')

IMachine实际上是指类的实例的类型,而不是类(构造函数)本身。

相反,您将要使用typeof IMachine

const Machine: typeof IMachine = require('lib')