-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Closed
Labels
QuestionAn issue which isn't directly actionable in codeAn issue which isn't directly actionable in code
Description
Hi,
I'm wondering how to achieve this ?
class Test {
public foo: string;
private quux: string;
// ...
}
class Plop {
public bar: string;
// ...
}
class TestPlopMixin implements Test, Plop {
public foo: string;
public bar: string;
private quux: string;
// Class TestPlopMixin incorrectly implements interface Test
// Types have separate declarations of a private property 'quux'
}
Thanks
Metadata
Metadata
Assignees
Labels
QuestionAn issue which isn't directly actionable in codeAn issue which isn't directly actionable in code