jelhan/croodle

View on GitHub
app/utils/intl-message.ts

Summary

Maintainability
A
0 mins
Test Coverage
export default class IntlMessage {
  key;
  options;

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