Skip to content Skip to sidebar Skip to footer

TypeScript: Declare A Variable That Is A Function Named "new"

Let's say I want to write TypeScript definitions of a modules where it's JavaScript equivalent is the following: var service = {}; service.new = function (name, options) { cons

Solution 1:

In certain contexts you can quote identifier names:

interface MyModule {
    "new"(name: string, options: Options): NewService;
}

declare const m: MyModule;
export = m;

Post a Comment for "TypeScript: Declare A Variable That Is A Function Named "new""