UNPKG

@rbxts/destroyable

Version:

A class with a janitor and a destroy() method

6 lines (5 loc) 147 B
import { Janitor } from "@rbxts/janitor"; export default class Destroyable { protected readonly janitor: Janitor<void>; destroy(): void; }