@deafwave/osrs-botmaker-types 0.5.13 → 0.5.14
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.
|
@@ -102,8 +102,14 @@ declare namespace java {
|
|
|
102
102
|
getName(): string;
|
|
103
103
|
getType(): java.lang.Class<any>;
|
|
104
104
|
getModifiers(): number;
|
|
105
|
+
isAccessible(): boolean;
|
|
106
|
+
setAccessible(flag: boolean): void;
|
|
105
107
|
isEnumConstant(): boolean;
|
|
106
108
|
isSynthetic(): boolean;
|
|
109
|
+
getAnnotation<A extends any>(annotationClass: java.lang.Class<A>): A | null;
|
|
110
|
+
getAnnotations(): any[];
|
|
111
|
+
getDeclaredAnnotations(): any[];
|
|
112
|
+
getGenericType(): any;
|
|
107
113
|
toString(): string;
|
|
108
114
|
}
|
|
109
115
|
|