fabasoad/business-card

View on GitHub
src/scripts/i18n/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export class Locale {
  code: string

  constructor(code: string) {
    this.code = code
  }
}