Answers for "abstract interface in typescript"

0

abstract interface in typescript

abstract class BaseEmployee {
    firstName: string;
    lastName: string;
 
    constructor(firstName: string, lastName: string) {
        this.firstName = firstName;
        this.lastName = lastName;
    }
 
    abstract doWork(): void;
}
Posted by: Guest on December-07-2020

Code answers related to "abstract interface in typescript"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language