@plurid/plurid-react
Version:
React implementation of Plurid to explore the web in three dimensions
21 lines (20 loc) • 1.03 kB
TypeScript
import React from 'react';
import { AnyAction } from '@reduxjs/toolkit';
import themes from '@plurid/plurid-themes';
export interface PluridPlaneConfiguratorOwnProperties {
theme: keyof typeof themes;
style: React.CSSProperties;
}
export interface PluridPlaneConfiguratorStateProperties {
}
export interface PluridPlaneConfiguratorDispatchProperties {
}
export declare type PluridPlaneConfiguratorProperties = PluridPlaneConfiguratorOwnProperties & PluridPlaneConfiguratorStateProperties & PluridPlaneConfiguratorDispatchProperties;
declare const ConnectedPluridPlaneConfigurator: import("react-redux").ConnectedComponent<React.FC<React.PropsWithChildren<PluridPlaneConfiguratorProperties>>, {
children?: React.ReactNode;
theme: keyof typeof themes;
style: React.CSSProperties;
context?: React.Context<import("react-redux").ReactReduxContextValue<any, AnyAction>> | undefined;
store?: import("@reduxjs/toolkit").Store<any, AnyAction> | undefined;
}>;
export default ConnectedPluridPlaneConfigurator;