lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
9 lines (8 loc) • 495 B
TypeScript
type TransformControlsPhase = "start" | "end";
export type TransformControlsMode = "translate" | "rotate" | "scale";
export type TransformControlsPayload = {
phase: TransformControlsPhase;
mode: TransformControlsMode;
};
export declare const emitTransformControls: (val: TransformControlsPhase, isState?: boolean | undefined) => void, onTransformControls: (cb: (val: TransformControlsPhase) => void, once?: boolean | undefined) => import("@lincode/promiselikes").Cancellable;
export {};