File

src/app/shared/components/inheritance.ts

Extends

SonComponent

Index

Properties
Methods

Constructor

constructor()

Methods

myMethod
myMethod()
Inherited from MotherComponent
Defined in MotherComponent:31
Returns : string

Properties

myProp
Type : string
Inherited from MotherComponent
Defined in MotherComponent:14
import { Component, Input } from '@angular/core';

@Component({ template: '' })
export abstract class MotherComponent {
    abstract myProp: string;

    constructor() {}

    abstract myMethod(): string;
}

@Component({ template: '' })
export class SonComponent extends MotherComponent {
    myProp: string;

    constructor() {
        super();
    }

    myMethod(): string {
        return 'Implementation A';
    }
}

@Component({ template: '' })
export class GrandsonComponent extends SonComponent {
    constructor() {
        super();
    }

    myMethod(): string {
        return 'Implementation B';
    }
}
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""