mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
11 lines (10 loc) • 446 B
TypeScript
import EventLoopItem from "../api/core/EventLoopItem";
import Defaults from "./utils/Defaults";
import { ExtractProps } from "./utils/extractProps";
import Nullable from "./utils/Nullable";
export default interface IEventLoop {
onLoop: Nullable<() => void>;
proxy: Nullable<EventLoopItem>;
}
export declare const eventLoopSchema: Required<ExtractProps<IEventLoop>>;
export declare const eventLoopDefaults: Defaults<IEventLoop>;