mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
12 lines (11 loc) • 463 B
TypeScript
import IObjectManager from "./IObjectManager";
import Defaults from "./utils/Defaults";
import { ExtractProps } from "./utils/extractProps";
import Nullable from "./utils/Nullable";
export default interface ILoaded extends IObjectManager {
src: Nullable<string>;
onLoad: Nullable<() => void>;
boxVisible: boolean;
}
export declare const loadedSchema: Required<ExtractProps<ILoaded>>;
export declare const loadedDefaults: Defaults<ILoaded>;