ts-jsdk
Version:
TypeScript implementation of the Java platform
12 lines (11 loc) • 419 B
TypeScript
import { LayoutManager } from "./LayoutManager";
import { Component } from "./Component";
export declare enum SpringLayoutDirection {
EAST = "EAST",
SOUTH = "SOUTH",
WEST = "WEST",
NORTH = "NORTH"
}
export declare class SpringLayout implements LayoutManager {
putConstraint(_direction: SpringLayoutDirection, _comp: Component, _num: number, _dir2: SpringLayoutDirection, _comp2: Component): void;
}