phantasmal-world/src/core/observable/index.ts

13 lines
390 B
TypeScript
Raw Normal View History

import { SimpleEmitter } from "./SimpleEmitter";
import { WritableProperty } from "./WritableProperty";
import { SimpleProperty } from "./SimpleProperty";
import { Emitter } from "./Emitter";
export function emitter<E, M = undefined>(): Emitter<E, M> {
return new SimpleEmitter();
}
export function property<T>(value: T): WritableProperty<T> {
return new SimpleProperty(value);
}