forked from dydxprotocol/v4-localization
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
21 lines (18 loc) · 784 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import marketsV4 from "./v4/staging/markets.json";
import walletConnect from "./wallet_connect";
import { APP } from "./config/localization/app";
export { TOOLTIPS } from "./config/localization/tooltip";
export {
APP_STRING_KEYS,
ERRORS_STRING_KEYS,
WARNINGS_STRING_KEYS,
TOKEN_MIGRATION_STRING_KEYS,
} from "./scripts/generated/app";
export { TOOLTIP_STRING_KEYS } from "./scripts/generated/tooltips";
export { APP_NATIVE } from "./config/localizations_native";
export { NOTIFICATIONS } from "./config/localization_notifications";
export { NOTIFICATIONS_STRING_KEYS } from "./scripts/generated/notifications";
export const MARKETS_V4 = marketsV4;
export const WALLET_CONNECT = walletConnect;
export type SupportedLocale = keyof typeof APP;
export const LOCALE_DATA = APP;