UNPKG

lingo3d

Version:

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

9 lines (8 loc) 340 B
import { ExtractProps } from "./utils/extractProps"; import IAppendable from "./IAppendable"; export default interface IText extends IAppendable { value: string; opacity: number; } export declare const textSchema: Required<ExtractProps<IText>>; export declare const textDefaults: Partial<import("./utils/Defaults").default<IText>>;