@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
17 lines • 456 B
TypeScript
export class SplitView extends EmptyView {
static from({ a, b, type, fraction }: {
a: any;
b: any;
type?: string;
fraction?: number;
}): SplitView;
constructor();
set fraction(arg: any);
set direction(arg: any);
set childA(arg: any);
set childB(arg: any);
layout(): void;
#private;
}
import EmptyView from "../../../src/view/elements/EmptyView.js";
//# sourceMappingURL=SplitView.d.ts.map