UNPKG

@plurid/plurid-react

Version:

React implementation of Plurid to explore the web in three dimensions

24 lines (23 loc) 1.7 kB
import { TreePlane, SpaceTransform } from '@plurid/plurid-data'; import { AppState } from "../../store"; export declare const getSpace: (state: AppState) => import("@plurid/plurid-data").PluridStateSpace; export declare const getLoading: (state: AppState) => boolean; export declare const getResolvedLayout: (state: AppState) => boolean; export declare const getTransformMatrix: (state: AppState) => string; export declare const getAnimatedTransform: (state: AppState) => boolean; export declare const getTransformTime: (state: AppState) => number; export declare const getRotationX: (state: AppState) => number; export declare const getRotationY: (state: AppState) => number; export declare const getTranslationX: (state: AppState) => number; export declare const getTranslationY: (state: AppState) => number; export declare const getTranslationZ: (state: AppState) => number; export declare const getScale: (state: AppState) => number; export declare const getTree: (state: AppState) => TreePlane[]; export declare const getTransform: (state: AppState) => SpaceTransform; export declare const getActiveUniverseID: (state: AppState) => string; export declare const getView: (state: AppState) => import("@plurid/plurid-data").PluridApplicationView; export declare const getViewSize: (state: AppState) => import("@plurid/plurid-data/distribution/interfaces/internal/utilities").ViewSize; export declare const getCulledView: (state: AppState) => import("@plurid/plurid-data").PluridApplicationView; export declare const getActivePlaneID: (state: AppState) => string; export declare const getIsolatePlane: (state: AppState) => string; export declare const getLastClosedPlane: (state: AppState) => string;