UNPKG
ethereum-lite-explorer
Version:
latest (1.0.0-beta.8)
1.0.0-beta.8
Ethereum Lite Explorer
ethereum-lite-explorer
/
src
/
app
/
TranslationLoader.ts
6 lines
(5 loc)
•
140 B
text/typescript
View Raw
1
2
3
4
5
6
export
class
TranslationLoader
{
async
load
(
locale
:
string
) {
return
await
import
(
"./translation/"
+ locale +
".json"
); } }