test/fixtures/sample-files-extends/src/app/mutiple-inheritance/first-class.ts
Properties |
name |
Type : string
|
age |
Type : number
|
Inherited from
BSecondClass
|
Defined in
BSecondClass:4
|
adress |
Type : string
|
Inherited from
AThirdClass
|
Defined in
AThirdClass:2
|
import { BSecondClass } from './second-class';
export class FirstClass extends BSecondClass {
name: string;
}