fixed missing export declaration
This commit is contained in:
parent
7fe0159297
commit
710281ca3f
1 changed files with 5 additions and 5 deletions
|
@ -43,14 +43,14 @@ namespace ui {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
enum RepaintMode {
|
export enum RepaintMode {
|
||||||
NONE,
|
NONE,
|
||||||
REPAINT,
|
REPAINT,
|
||||||
REPAINT_OBJECT_FULL,
|
REPAINT_OBJECT_FULL,
|
||||||
REPAINT_FULL
|
REPAINT_FULL
|
||||||
}
|
}
|
||||||
|
|
||||||
interface AxisAlignedBoundingBox {
|
export interface AxisAlignedBoundingBox {
|
||||||
x: number;
|
x: number;
|
||||||
y: number;
|
y: number;
|
||||||
|
|
||||||
|
@ -58,20 +58,20 @@ namespace ui {
|
||||||
height: number;
|
height: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum ClickEventType {
|
export enum ClickEventType {
|
||||||
SIGNLE,
|
SIGNLE,
|
||||||
DOUBLE,
|
DOUBLE,
|
||||||
CONTEXT_MENU
|
CONTEXT_MENU
|
||||||
}
|
}
|
||||||
|
|
||||||
interface InteractionClickEvent {
|
export interface InteractionClickEvent {
|
||||||
type: ClickEventType;
|
type: ClickEventType;
|
||||||
consumed: boolean;
|
consumed: boolean;
|
||||||
offset_x: number;
|
offset_x: number;
|
||||||
offset_y: number;
|
offset_y: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface InteractionListener {
|
export interface InteractionListener {
|
||||||
region: AxisAlignedBoundingBox;
|
region: AxisAlignedBoundingBox;
|
||||||
region_weight: number;
|
region_weight: number;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue