mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-25 10:58:19 +01:00
12 lines
234 B
TypeScript
12 lines
234 B
TypeScript
export type LocaleMessagesType = {
|
|
[key: string]: {
|
|
message: string;
|
|
description?: string;
|
|
};
|
|
};
|
|
|
|
export type LocaleType = {
|
|
i18n: (key: string, placeholders: Array<string>) => string;
|
|
messages: LocaleMessagesType;
|
|
};
|