UNPKG

ember-intl

Version:

Internationalization for Ember projects

7 lines (6 loc) 237 B
import { type SafeString } from '@ember/template'; /** * @private * @hide */ export declare function escapeFormatMessageOptions<T extends Record<string, any>>(options: T): { [K in keyof T]: T[K] extends SafeString ? string : T[K]; };