mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-03 17:50:40 +08:00
15 lines
282 B
TypeScript
15 lines
282 B
TypeScript
import { compose, Store } from 'redux';
|
|
|
|
type ClarityType<T> = (...args: string[]) => T;
|
|
|
|
declare global {
|
|
interface Window {
|
|
store: Store;
|
|
clarity: ClarityType<string>;
|
|
analytics: Record<string, any>;
|
|
__REDUX_DEVTOOLS_EXTENSION_COMPOSE__: typeof compose;
|
|
}
|
|
}
|
|
|
|
export {};
|