UNPKG
create-magner
Version:
latest (0.5.0)
0.5.0
0.4.3
0.4.2
CLI for bootstrapping Magner projects
github.com/code-pilots/magner
code-pilots/magner
create-magner
/
app
/
src
/
configs
/
translation
/
en.ts
11 lines
(8 loc)
•
240 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ addressEn }
from
'features/addresses/en'
;
import
{ loginEn }
from
'features/login/en'
;
const
enCustom = {
login
: loginEn,
address
: addressEn, };
export
type
CustomTranslationSchema
=
typeof
enCustom;
export
default
enCustom;