UNPKG

@prismadev/webmarine2d

Version:

Core utils for 2D verson of game engine Webmarine

8 lines (7 loc) 173 B
/** Observer reference */ export declare type Observer = { /** Callback function */ callback(): void; /** Will it be called once */ once: boolean; };