@plurid/plurid-react
Version:
React implementation of Plurid to explore the web in three dimensions
21 lines (20 loc) • 1.05 kB
TypeScript
import React from 'react';
import { AnyAction } from '@reduxjs/toolkit';
import { Theme } from '@plurid/plurid-themes';
import { PluridRouteComponentProperty } from '@plurid/plurid-data';
import { PluridReactFunctionalComponent } from "../../../data/interfaces";
export interface ExternalPlaneOwnProperties {
}
export interface ExternalPlaneStateProperties {
stateGeneralTheme: Theme;
stateInteractionTheme: Theme;
}
export interface ExternalPlaneDispatchProperties {
}
export declare type ExternalPlaneProperties = ExternalPlaneOwnProperties & ExternalPlaneStateProperties & ExternalPlaneDispatchProperties;
declare const ConnectedExternalPlane: import("react-redux").ConnectedComponent<PluridReactFunctionalComponent<ExternalPlaneProperties, PluridRouteComponentProperty>, {
plurid: PluridRouteComponentProperty;
context?: React.Context<import("react-redux").ReactReduxContextValue<any, AnyAction>> | undefined;
store?: import("@reduxjs/toolkit").Store<any, AnyAction> | undefined;
}>;
export default ConnectedExternalPlane;