lingo3d-react
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
9 lines (8 loc) • 448 B
TypeScript
import { Model } from "lingo3d";
import FoundManager from "lingo3d/lib/display/core/FoundManager";
import Loaded from "lingo3d/lib/display/core/Loaded";
import ObjectManager from "lingo3d/lib/display/core/ObjectManager";
import React from "react";
type Parent = ObjectManager | Model | Loaded | undefined;
declare const _default: (parent: Parent | React.MutableRefObject<Parent>, name?: string | RegExp) => FoundManager[];
export default _default;