@looker/embed-components
Version:
11 lines (10 loc) • 379 B
TypeScript
import type { FactoryState, RootState } from '../GlobalStore';
import type { ThemesState } from '../Theme';
type DeepPartial<T> = {
[P in keyof T]?: DeepPartial<T[P]>;
};
export declare const createTestStore: (overrides?: DeepPartial<RootState>) => import("@looker/redux").Store<{
factory: FactoryState;
themes: ThemesState;
}, import("redux").AnyAction>;
export {};