interface A {
(obj? : any) : any;
func1() : void;
func2() :void;
}
How do I write a class B that would implement A? How would I implement the parametrized constructor?
interface A {
(obj? : any) : any;
func1() : void;
func2() :void;
}
How do I write a class B that would implement A? How would I implement the parametrized constructor?