@deafwave/osrs-botmaker-types 0.6.17 → 0.6.19
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.
package/README.md
CHANGED
|
@@ -1460,3 +1460,4 @@
|
|
|
1460
1460
|
/// <reference path="./net/runelite/client/util/WildcardMatcher.d.ts" />
|
|
1461
1461
|
/// <reference path="./net/runelite/client/util/WinUtil.d.ts" />
|
|
1462
1462
|
/// <reference path="./net/runelite/client/util/WorldUtil.d.ts" />
|
|
1463
|
+
/// <reference path="./net/runelite/http/api/item/index.d.ts" />
|
|
@@ -60,5 +60,25 @@ declare namespace net.runelite.api {
|
|
|
60
60
|
getTransformedComposition(): NPCComposition | null;
|
|
61
61
|
getModelOverrides(): NpcOverrides | null;
|
|
62
62
|
getChatheadOverrides(): NpcOverrides | null;
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Get the array of overhead icon archive ids.
|
|
66
|
+
* Used in conjunction with {@link #getOverheadSpriteIds()}
|
|
67
|
+
* to determine which icons are being rendered overhead.
|
|
68
|
+
*
|
|
69
|
+
* @return A sparse array of archive ids. Values of -1 are not used.
|
|
70
|
+
* @see #getOverheadSpriteIds()
|
|
71
|
+
*/
|
|
72
|
+
getOverheadArchiveIds(): number[] | null;
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Get the array of overhead icon sprite indexes.
|
|
76
|
+
* Used in conjunction with {@link #getOverheadArchiveIds()}
|
|
77
|
+
* to determine which icons are being rendered overhead.
|
|
78
|
+
*
|
|
79
|
+
* @return A sparse array of archive ids. Values of -1 are not used.
|
|
80
|
+
* @see #getOverheadArchiveIds()
|
|
81
|
+
*/
|
|
82
|
+
getOverheadSpriteIds(): number[] | null;
|
|
63
83
|
}
|
|
64
84
|
}
|