UNPKG

@triviality/core

Version:
14 lines (8 loc) 334 B
import { GreetingsServiceInterface } from './GreetingsServiceInterface'; export class ScreamGreetingsService implements GreetingsServiceInterface { constructor(private speakService: GreetingsServiceInterface) { } public greet(name: string): string { return `${this.speakService.greet(name).toUpperCase()}!!!!!!`; } }