UNPKG

ts-jsdk

Version:

TypeScript implementation of the Java platform

12 lines (11 loc) 439 B
import { LayoutManager } from "../../src/awt/LayoutManager"; import { JComponent } from "swing/JComponent"; export declare enum SpringLayoutDirection { EAST = "EAST", SOUTH = "SOUTH", WEST = "WEST", NORTH = "NORTH" } export declare class SpringLayout implements LayoutManager { putConstraint(_direction: SpringLayoutDirection, _comp: JComponent, _num: number, _dir2: SpringLayoutDirection, _comp2: JComponent): void; }