From c0e8203d3d807ff178976e66a72d29d3f0fe2f8b Mon Sep 17 00:00:00 2001 From: rhunk <101876869+rhunk@users.noreply.github.com> Date: Wed, 21 Aug 2024 11:41:42 +0200 Subject: [PATCH] feat(interfaces): new thread function --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index 8da8c6b..56728b5 100644 --- a/index.d.ts +++ b/index.d.ts @@ -255,6 +255,7 @@ declare module "ipc" { declare module "java-interfaces" { function runnable(callback: (() => void)): any; function newProxy(javaClass: Class, callback: ((proxy: any, method: any, args: any[]) => any)): any; + function thread(callback: (() => void)): any; } declare module "messaging" {