mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-23 14:40:50 +01:00
7 lines
243 B
TypeScript
7 lines
243 B
TypeScript
import { Nitro } from 'nitro-renderer';
|
|
|
|
export function LocalizeText(key: string, parameters: string[] = null, replacements: string[] = null): string
|
|
{
|
|
return Nitro.instance.getLocalizationWithParameters(key, parameters, replacements);
|
|
}
|