fabasoad/business-card

View on GitHub
src/scripts/services/StackOverflowService.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { StackExchangeData, StackExchangeService } from './StackExchangeService'

export class StackOverflowService extends StackExchangeService {
  public constructor(defaultVal: StackExchangeData) {
    super(defaultVal, 'Stack Overflow')
  }
}