ts-jsdk
Version:
TypeScript implementation of the Java platform
19 lines (18 loc) • 481 B
TypeScript
import { Dimension } from "./Dimension";
import { Point } from "./Point";
import { Container } from "./Container";
export declare class JWindowEvent {
private id;
static WINDOW_CLOSING: string;
constructor(id: string);
getID(): string;
}
export declare class JWindow extends Container {
private size;
private location;
pack(): void;
dispose(): void;
getSize(): Dimension;
setLocation(x: number, y: number): void;
getLocation(): Point;
}