UNPKG

@cute-dw/core

Version:

This TypeScript library is the main part of a more powerfull package designed for the fast WEB software development. The cornerstone of the library is the **DataStore** class, which might be useful when you need a full control of the data, but do not need

7 lines (6 loc) 199 B
import { Subject } from "rxjs"; export declare class EventProducer<T> extends Subject<T> { produce(value: T): void; trigger(value: T): void; post(value: T, delay?: number): void; }