spacesvr-websessions
Version:
A standardized reality for future of the 3D Web
24 lines (23 loc) • 492 B
TypeScript
import { Idea } from "./idea";
import { Vector3 } from "three";
declare type RefNode = {
id: string;
props: any;
children?: RefNode[];
};
declare type RefTree = RefNode[];
export declare class World {
id: string;
predecessor?: string;
dataUrl?: string;
upToDate: boolean;
tree: RefTree;
creatorIds: number[];
constructor();
getIdea(): Idea;
getAxiom(): Idea;
getUpNorm(): Vector3;
getRange(): number;
getHex(): string;
}
export {};