lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
9 lines (8 loc) • 386 B
TypeScript
import { ExtractProps } from "./utils/extractProps";
import IAppendable from "./IAppendable";
export default interface ISplashScreen extends IAppendable {
opacity: number;
textCenter: boolean;
}
export declare const splashScreenSchema: Required<ExtractProps<ISplashScreen>>;
export declare const splashScreenDefaults: Partial<import("./utils/Defaults").default<ISplashScreen>>;