nope-js-node
Version:
NoPE Runtime for Nodejs. For Browser-Support please use nope-browser
19 lines (18 loc) • 588 B
TypeScript
/**
* @author Martin Karkowski
* @email m.karkowski@zema.de
* @create date 2020-11-23 08:06:30
* @modify date 2020-12-02 07:38:10
* @desc [description]
*/
import { NopeEventEmitter } from "./nopeEventEmitter";
/**
* RsJX based Observable.
*
* Contains additional Functionalities like:
* - property with the current value
* - function to publish values. (wrapper for next)
* - enables performing a subscription with synced call or a immediate call.
*/
export declare class InjectableNopeEventEmitter<T, S = T, G = T> extends NopeEventEmitter<T, S, G> {
}