mirror of
https://github.com/joinmarket-webui/jam.git
synced 2026-08-13 12:33:26 +02:00
* refactor: App.jsx to App.tsx * refactor(test): setupTests.js to setupTests.ts * refactor(test): App.test.jsx to App.test.tsx * refactor(ts): ActivityIndicators.jsx to .tsx * refactor(ts): Alert.jsx to .tsx * refactor: remove unneeded global declaration * refactor(ts): JarSelectorModal.jsx to .tsx * fix: prefer direct usage of classnames instead of bind
12 lines
213 B
TypeScript
12 lines
213 B
TypeScript
declare module '*.module.css'
|
|
|
|
type JamGlobal = {
|
|
SETTINGS_STORE_KEY: string,
|
|
THEMES: string[],
|
|
THEME_ROOT_ATTR: string,
|
|
PUBLIC_PATH: string,
|
|
}
|
|
|
|
declare var JM: JamGlobal
|
|
|
|
declare var __DEV__: any
|