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