UNPKG

dcl-npc-toolkit

Version:

A collection of tools for creating Non-Player-Characters (NPCs). These are capable of having conversations with the player, and play different animations.

8 lines (7 loc) 317 B
export type DelayedHandle = { id: string; cancel: () => void; }; export declare const delayedFunction: (cb: () => void, delayMs: number) => DelayedHandle; export declare function clearDelayedFunction(handleOrId: DelayedHandle | string | undefined | null): void; export declare function debugTriggers(): void;