decide.nolog.cz/app/utils/intl-message.ts
Jeldrik Hanschke f0cff27e99
Convert to TypeScript (#713)
* setup typescript

* covert to TypeScript
2023-10-29 19:16:33 +01:00

9 lines
171 B
TypeScript

export default class IntlMessage {
key;
options;
constructor(key: string, options?: Record<string, string>) {
this.key = key;
this.options = options;
}
}