Created
December 13, 2021 15:18
-
-
Save FunnyGhost/2621b427f65d0a5d696774e152cdf208 to your computer and use it in GitHub Desktop.
Contract for Language Service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { LanguageShortName } from '../models/language-short-name'; | |
export abstract class LanguageService { | |
readonly SUPPORTED_LANGUAGES: LanguageShortName[] = ['nl', 'en', 'sv', 'de']; | |
public abstract getLanguage(defaultLanguage: LanguageShortName): LanguageShortName; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment