UNPKG

@sendbird/uikit-react-native

Version:

Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

17 lines (16 loc) 658 B
import type { Locale } from 'date-fns'; import { PartialDeep } from '@sendbird/uikit-utils'; import type { StringSet } from './StringSet.type'; type StringSetCreateOptions = { dateLocale: Locale; overrides?: PartialDeep<StringSet>; }; /** * Create string set * You can create localized String set, you should provide locale for date and string as a parameters * * @param {StringSetCreateOptions.dateLocale} dateLocale Date locale (from date-fns) * @param {StringSetCreateOptions.overrides} [overrides] Localized strings * */ export declare const createBaseStringSet: ({ dateLocale, overrides }: StringSetCreateOptions) => StringSet; export {};