Building a class registry: Cannot use 'new' with an expression whose type lacks a call or construct signature

夙愿已清 提交于 2019-12-29 07:19:08

问题


I have this setup:

//./things/Base.ts
export default class Base{
  constructor(){
    console.log("HI I AM A BASE THING");
  }
}

//things.ts
import Base = require('./things/Base');

export = {
  defaultThing: Base
};

//entry.ts
import Things = require('./things');

new Things.defaultThing();

What I'm trying to do is build a dictionary with the keys I want for classes of a given type, letting me change the underlying implementation without touching the consuming code. This fails with the following message

λ tsc entry.ts
entry.ts(3,1): error TS2351: Cannot use 'new' with an expression whose type lacks a call or construct signature.

Why is this and what's the proper idiom?


回答1:


import Base = require(...) does not mix well with export default class Base.

If you add console.dir(Base) to things.ts, you will see that Base is actually a module there, not a class:

{ __esModule: true, default: [Function: Base] }

If you change that import in things.ts to

import Base from './things/Base';

then your example starts working.

The explanation is given in the typescript language specification:

An import require declaration of the form

    import m = require("mod");

is equivalent to the ECMAScript 2015 import declaration

    import * as m from "mod";

That es6 form always imports m as a module, even if it contains default export.



来源:https://stackoverflow.com/questions/39578040/building-a-class-registry-cannot-use-new-with-an-expression-whose-type-lacks

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!