@deafwave/osrs-botmaker-types 0.3.8 → 0.4.1
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/dist/src/types/java/READ.ME.md +481 -0
- package/dist/src/types/java/awt/Color.d.ts +7 -1
- package/dist/src/types/java/awt/MouseInfo.d.ts +15 -0
- package/dist/src/types/java/index.d.ts +3 -0
- package/dist/src/types/java/swing/Component.d.ts +21 -0
- package/dist/src/types/java/swing/JButton.d.ts +1 -1
- package/dist/src/types/java/swing/JCheckBox.d.ts +3 -0
- package/dist/src/types/java/swing/JFrame.d.ts +8 -6
- package/dist/src/types/java/swing/JOptionPane.d.ts +39 -0
- package/dist/src/types/java/swing/JTabbedPane.d.ts +23 -4
- package/dist/src/types/sox/api/bot/attackStyle.d.ts +12 -0
- package/dist/src/types/sox/api/bot/bank.d.ts +144 -0
- package/dist/src/types/sox/api/bot/bmCache.d.ts +54 -0
- package/dist/src/types/sox/api/bot/bmGlobalCache.d.ts +54 -0
- package/dist/src/types/sox/api/bot/breakHandler.d.ts +15 -0
- package/dist/src/types/sox/api/bot/counters.d.ts +23 -0
- package/dist/src/types/sox/api/bot/equipment.d.ts +62 -0
- package/dist/src/types/sox/api/bot/events.d.ts +37 -0
- package/dist/src/types/sox/api/bot/grandExchange.d.ts +67 -0
- package/dist/src/types/sox/api/bot/graphicsObjects.d.ts +16 -0
- package/dist/src/types/sox/api/bot/index.d.ts +128 -0
- package/dist/src/types/sox/api/bot/inventory.d.ts +153 -0
- package/dist/src/types/sox/api/bot/magic.d.ts +122 -0
- package/dist/src/types/sox/api/bot/net.d.ts +24 -0
- package/dist/src/types/sox/api/bot/notifier.d.ts +16 -0
- package/dist/src/types/sox/api/bot/npcs.d.ts +89 -0
- package/dist/src/types/sox/api/bot/objects.d.ts +89 -0
- package/dist/src/types/sox/api/bot/players.d.ts +35 -0
- package/dist/src/types/sox/api/bot/plugins.d.ts +81 -0
- package/dist/src/types/sox/api/bot/prayer.d.ts +16 -0
- package/dist/src/types/sox/api/bot/projectiles.d.ts +16 -0
- package/dist/src/types/sox/api/bot/task.d.ts +30 -0
- package/dist/src/types/sox/api/bot/tileItems.d.ts +65 -0
- package/dist/src/types/sox/api/bot/variables.d.ts +51 -0
- package/dist/src/types/sox/api/bot/walking.d.ts +65 -0
- package/dist/src/types/sox/api/bot/widgets.d.ts +32 -0
- package/dist/src/types/sox/api/bot.d.ts +2 -204
- package/dist/src/types/sox/api/client.d.ts +1 -1
- package/dist/src/types/sox/api/clientThread.d.ts +24 -0
- package/dist/src/types/sox/api/configManager.d.ts +239 -0
- package/dist/src/types/sox/index.d.ts +2 -48
- package/package.json +1 -1
|
@@ -1,51 +1,5 @@
|
|
|
1
1
|
/// <reference path="./api/api.d.ts" />
|
|
2
2
|
/// <reference path="./api/bot.d.ts" />
|
|
3
3
|
/// <reference path="./api/client.d.ts" />
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
// getConfiguration overloads
|
|
7
|
-
getConfiguration: {
|
|
8
|
-
(groupName: string, key: string): string | null;
|
|
9
|
-
(groupName: string, key: string, clazz: Type): object;
|
|
10
|
-
(groupName: string, profile: string, key: string, type: Type): object;
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
// setConfiguration overloads
|
|
14
|
-
setConfiguration: {
|
|
15
|
-
(groupName: string, key: string, value: object | boolean | string): void;
|
|
16
|
-
(groupName: string, profile: string, key: string, value: object | string | boolean): void;
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
// RS profile-specific get/set
|
|
20
|
-
getRSProfileConfiguration: {
|
|
21
|
-
(groupName: string, key: string): string | null;
|
|
22
|
-
(groupName: string, key: string, clazz: Type): object;
|
|
23
|
-
};
|
|
24
|
-
setRSProfileConfiguration: (groupName: string, key: string, value: object) => void;
|
|
25
|
-
|
|
26
|
-
// Other methods
|
|
27
|
-
getConfig: (clazz: Class) => object;
|
|
28
|
-
getConfigDescriptor: (configurationProxy: Config) => ConfigDescriptor;
|
|
29
|
-
getConfigurationKeys: (prefix: string) => List;
|
|
30
|
-
getProfile: () => ConfigProfile;
|
|
31
|
-
getRSProfileKey: () => string;
|
|
32
|
-
getRSProfileConfigurationKeys: (group: string, profile: string, keyPrefix: string) => List;
|
|
33
|
-
getRSProfiles: () => List;
|
|
34
|
-
getWholeKey: (groupName: string, profile: string, key: string) => string;
|
|
35
|
-
importAndMigrate: (lock: ProfileManager.Lock, from: File, targetProfile: ConfigProfile) => void;
|
|
36
|
-
isLoading: () => void;
|
|
37
|
-
onSessionClose: (sessionClose: SessionClose) => void;
|
|
38
|
-
onSessionOpen: (sessionOpen: SessionOpen) => void;
|
|
39
|
-
renameProfile: (profile: ConfigProfile, name: string) => void;
|
|
40
|
-
sendConfig: () => void;
|
|
41
|
-
setDefaultConfiguration: (proxy: Config, override: boolean) => void;
|
|
42
|
-
switchProfile: (profile: ConfigProfile) => void;
|
|
43
|
-
toggleSync: (profile: ConfigProfile, sync: boolean) => void;
|
|
44
|
-
|
|
45
|
-
// unsetConfiguration overloads
|
|
46
|
-
unsetConfiguration: {
|
|
47
|
-
(groupName: string, key: string): void;
|
|
48
|
-
(groupName: string, profile: string, key: string): void;
|
|
49
|
-
};
|
|
50
|
-
unsetRSProfileConfiguration: (groupName: string, key: string) => void;
|
|
51
|
-
};
|
|
4
|
+
/// <reference path="./api/clientThread.d.ts" />
|
|
5
|
+
/// <reference path="./api/configManager.d.ts" />
|