UNPKG

typesforbukkit

Version:

Types For Bukkit

6 lines 290 B
namespace java.lang { export interface Runnable { /** @description When an object implementing interface Runnable is used to create a thread, starting the thread causes the object's run method to be called in that separately executing thread */ run(): void; } }