fix(java_type): new instance

This commit is contained in:
rhunk
2024-05-28 00:06:43 +02:00
committed by GitHub
parent c8cd403763
commit 9bc2faf302

2
index.d.ts vendored
View File

@@ -3,7 +3,7 @@ interface Class<T> {
} }
interface JavaType { interface JavaType {
newInstance(...args: any[]): any; __new__(...args: any[]): any;
} }
interface SEWrapper { interface SEWrapper {