@looker/embed-components
Version:
11 lines (10 loc) • 317 B
TypeScript
import type { ThemesState } from '../Theme';
import type { FactoryState } from './slice';
export declare const store: import("@looker/redux").Store<{
factory: FactoryState;
themes: ThemesState;
}, import("redux").AnyAction>;
export interface RootState {
factory: FactoryState;
themes?: ThemesState;
}