fabasoad/business-card

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

Summary

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

export class SuperUserService extends StackExchangeService {
  public constructor(defaultVal: StackExchangeData) {
    super(defaultVal, 'Super User')
  }
}