lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
11 lines (10 loc) • 519 B
TypeScript
import Appendable from "../../display/core/Appendable";
import { Cancellable } from "@lincode/promiselikes";
export declare class PassthroughCallback {
callback: (val: any) => void;
handle: Cancellable;
constructor(callback: (val: any) => void, handle: Cancellable);
}
export declare const getOriginalInstance: (manager: any) => any;
declare const _default: (manager: Appendable, includeKeys: Array<string> | undefined, skipFunctions: boolean) => [Record<string, any>, Appendable];
export default _default;