UNPKG

lingo3d

Version:

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

10 lines (9 loc) 416 B
import IAppendable from "./IAppendable"; import { ExtractProps } from "./utils/extractProps"; export type ScriptLanguage = "JavaScript" | "TypeScript"; export default interface IScript extends IAppendable { code: string; language: ScriptLanguage; } export declare const scriptSchema: Required<ExtractProps<IScript>>; export declare const scriptDefaults: Partial<import("./utils/Defaults").default<IScript>>;