@plurid/plurid-data
Version:
Plurid Constants, Interfaces, Enumerations
41 lines (40 loc) • 2.19 kB
TypeScript
export declare const PLURID_PUBSUB_TOPIC: {
readonly CONFIGURATION: "configuration";
readonly SPACE_ANIMATED_TRANSFORM: "space.animatedTransform";
readonly SPACE_ROTATE_UP: "space.rotateUp";
readonly SPACE_ROTATE_DOWN: "space.rotateDown";
readonly SPACE_ROTATE_LEFT: "space.rotateLeft";
readonly SPACE_ROTATE_RIGHT: "space.rotateRight";
readonly SPACE_ROTATE_X_WITH: "space.rotateXWith";
readonly SPACE_ROTATE_Y_WITH: "space.rotateYWith";
readonly SPACE_ROTATE_X_TO: "space.rotateXTo";
readonly SPACE_ROTATE_Y_TO: "space.rotateYTo";
readonly SPACE_TRANSLATE_UP: "space.translateUp";
readonly SPACE_TRANSLATE_DOWN: "space.translateDown";
readonly SPACE_TRANSLATE_LEFT: "space.translateLeft";
readonly SPACE_TRANSLATE_RIGHT: "space.translateRight";
readonly SPACE_TRANSLATE_X_WITH: "space.translateXWith";
readonly SPACE_TRANSLATE_Y_WITH: "space.translateYWith";
readonly SPACE_TRANSLATE_Z_WITH: "space.translateZWith";
readonly SPACE_TRANSLATE_X_TO: "space.translateXTo";
readonly SPACE_TRANSLATE_Y_TO: "space.translateYTo";
readonly SPACE_TRANSLATE_Z_TO: "space.translateZTo";
readonly SPACE_SCALE_UP: "space.scaleUp";
readonly SPACE_SCALE_DOWN: "space.scaleDown";
readonly SPACE_SCALE_WITH: "space.scaleWith";
readonly SPACE_TRANSFORM: "space.transform";
readonly VIEW_ADD_PLANE: "view.addPlane";
readonly VIEW_SET_PLANES: "view.setPlanes";
readonly VIEW_REMOVE_PLANE: "view.removePlane";
readonly NAVIGATE_TO_PLANE: "space.navigateToPlane";
readonly REFRESH_PLANE: "space.refreshPlane";
readonly ISOLATE_PLANE: "space.isolatePlane";
readonly OPEN_CLOSED_PLANE: "space.openClosedPlane";
readonly CLOSE_PLANE: "space.closePlane";
readonly PREVIOUS_ROOT: "space.previousRoot";
readonly NEXT_ROOT: "space.nextRoot";
readonly NAVIGATE_TO_ROOT: "space.navigateToRoot";
};
export declare type PluridPubSubTopic = typeof PLURID_PUBSUB_TOPIC;
export declare type PluridPubSubTopicKeys = keyof typeof PLURID_PUBSUB_TOPIC;
export declare type PluridPubSubTopicKeysType = typeof PLURID_PUBSUB_TOPIC[PluridPubSubTopicKeys];