-
Notifications
You must be signed in to change notification settings - Fork 13.2k
Closed
Labels
ExternalRelates to another program, environment, or user action which we cannot control.Relates to another program, environment, or user action which we cannot control.
Description
As a library developer, I want to provide accurate typing definition files for my components.
The scenario that I cannot achieve this in is where I have a getter and setter on a class declared within an Ambient context.
**foo.d.ts**
// The following gives an error message: 'an accessor cannot be declared in an ambient context'
declare namespace Foo {
class Widget {
get name(): string; // gets the name
set name(name: string): void; // sets the name
}
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
ExternalRelates to another program, environment, or user action which we cannot control.Relates to another program, environment, or user action which we cannot control.