lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
10 lines (9 loc) • 702 B
TypeScript
import Appendable from "../../display/core/Appendable";
import DefaultMethod from "./DefaultMethod";
import Defaults from "./Defaults";
import NullableCallback from "./NullableCallback";
export type FunctionPtr = [NullableCallback | DefaultMethod | undefined];
declare const getDefaultValue: (manager: Appendable | Defaults<any>, key: string, fillNullableDefault?: boolean, fillFunctionArgs?: boolean, functionPtr?: FunctionPtr) => any;
export default getDefaultValue;
export declare const equalsValue: (manager: Appendable | Defaults<any>, val0: any, val1: any, key: string) => boolean;
export declare const equalsDefaultValue: (val: any, manager: Appendable | Defaults<any>, key: string) => boolean;