@deafwave/osrs-botmaker-types 0.6.2 → 0.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1245,6 +1245,7 @@
|
|
|
1245
1245
|
/// <reference path="./net/runelite/api/JagexColor.d.ts" />
|
|
1246
1246
|
/// <reference path="./net/runelite/api/KeyCode.d.ts" />
|
|
1247
1247
|
/// <reference path="./net/runelite/api/MainBufferProvider.d.ts" />
|
|
1248
|
+
/// <reference path="./net/runelite/api/Menu.d.ts" />
|
|
1248
1249
|
/// <reference path="./net/runelite/api/MenuAction.d.ts" />
|
|
1249
1250
|
/// <reference path="./net/runelite/api/MenuEntry.d.ts" />
|
|
1250
1251
|
/// <reference path="./net/runelite/api/Mesh.d.ts" />
|
package/dist/src/types/runelite/net/runelite/client/ui/overlay/components/LineComponent.d.ts
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
/// <reference path="../../../../../java/index.d.ts" />
|
|
3
3
|
declare namespace net.runelite.client.ui.overlay.components {
|
|
4
4
|
export class LineComponentBuilder {
|
|
5
|
+
constructor() : LineComponentBuilder;
|
|
5
6
|
bounds(bounds: Rectangle): LineComponentBuilder;
|
|
6
7
|
build(): LineComponent;
|
|
7
8
|
left(left: string): LineComponentBuilder;
|
|
@@ -17,6 +18,7 @@ declare namespace net.runelite.client.ui.overlay.components {
|
|
|
17
18
|
|
|
18
19
|
export class LineComponent {
|
|
19
20
|
builder(): LineComponentBuilder;
|
|
21
|
+
static builder(): LineComponentBuilder;
|
|
20
22
|
getBounds(): Rectangle;
|
|
21
23
|
render(graphics: Graphics2D): java.awt.Dimension;
|
|
22
24
|
setLeft(left: string): void;
|
package/dist/src/types/runelite/net/runelite/client/ui/overlay/components/TitleComponent.d.ts
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
/// <reference path="../../../../../java/index.d.ts" />
|
|
3
3
|
declare namespace net.runelite.client.ui.overlay.components {
|
|
4
4
|
export class TitleComponentBuilder {
|
|
5
|
+
constructor() : TitleComponentBuilder;
|
|
5
6
|
bounds(bounds: Rectangle): TitleComponentBuilder;
|
|
6
7
|
build(): TitleComponent;
|
|
7
8
|
color(color: java.awt.Color): TitleComponentBuilder;
|
|
@@ -13,6 +14,7 @@ declare namespace net.runelite.client.ui.overlay.components {
|
|
|
13
14
|
|
|
14
15
|
export class TitleComponent {
|
|
15
16
|
builder(): TitleComponentBuilder;
|
|
17
|
+
static builder(): TitleComponentBuilder;
|
|
16
18
|
getBounds(): Rectangle;
|
|
17
19
|
build(): TitleComponent;
|
|
18
20
|
setColor(color: java.awt.Color): void;
|