Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 15 additions & 9 deletions src/constants/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
import { CHECKSUMS } from './checksum'
import { i18n as I18N } from './i18n'
import { PUBLIC_ROUTES } from './routes'

export const CONSTANT = {
I18N,
CHECKSUMS,
PUBLIC_ROUTES,
}
import { CHECKSUMS } from './checksum'
import { i18n as I18N } from './i18n'
import { PUBLIC_ROUTES } from './routes'

interface Constants {
I18N: typeof I18N;
CHECKSUMS: typeof CHECKSUMS;
PUBLIC_ROUTES: typeof PUBLIC_ROUTES;
}

export const CONSTANT: Constants = {
I18N,
CHECKSUMS,
PUBLIC_ROUTES,
}