jam/typings.d.ts
Thebora Kompanioni d043353d1f
refactor: components from jsx to tsx (#509)
* 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
2022-09-26 12:22:31 +02:00

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