f0cff27e99
* setup typescript * covert to TypeScript
9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
export default class IntlMessage {
|
|
key;
|
|
options;
|
|
|
|
constructor(key: string, options?: Record<string, string>) {
|
|
this.key = key;
|
|
this.options = options;
|
|
}
|
|
}
|