JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "message-descriptor.ts"

Full Path: /home/markqprx/iniasli.pro/client/i18n/message-descriptor.ts
File size: 243 bytes
MIME-type: text/plain
Charset: utf-8

import {ReactElement} from 'react';

export interface MessageDescriptor {
  message: string;
  values?: Record<
    string,
    | string
    | number
    | null
    | undefined
    | ReactElement
    | ((parts: string) => ReactElement)
  >;
}