mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
6 lines
158 B
TypeScript
6 lines
158 B
TypeScript
import { Disposable } from "./Disposable";
|
|
|
|
export interface Observable<E, M = undefined> {
|
|
observe(observer: (event: E, meta: M) => void): Disposable;
|
|
}
|