mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-13 12:51:30 +08:00
12 lines
168 B
TypeScript
12 lines
168 B
TypeScript
import { compose, Store } from 'redux';
|
|
|
|
declare global {
|
|
interface Window {
|
|
store: Store;
|
|
|
|
__REDUX_DEVTOOLS_EXTENSION_COMPOSE__: typeof compose;
|
|
}
|
|
}
|
|
|
|
export {};
|