UNPKG

mylingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

10 lines (9 loc) 410 B
import IEventLoop from "./IEventLoop"; import Defaults from "./utils/Defaults"; import { ExtractProps } from "./utils/extractProps"; import Nullable from "./utils/Nullable"; export default interface ISkybox extends IEventLoop { texture: Nullable<string | Array<string>>; } export declare const skyboxSchema: Required<ExtractProps<ISkybox>>; export declare const skyboxDefaults: Defaults<ISkybox>;