1.0.2 • Published 7 years ago

reactiveproperty v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

reactiveproperty.js - ReactiveProperty for RxJS

Partial javascript implementation of https://github.com/runceel/ReactiveProperty.

Synopsys

import { ReactiveProperty } from "reactiveproperty";

class MyClass {
    myProperty: ReactiveProperty<string>;

    constructor(str: string) {
        this.myProperty = new ReactiveProperty<string>(str);
    }
}

const obj = new MyClass("foo");
obj.myProperty.subscribe(str => console.log(str));
// > foo
obj.myProperty.value = "bar";
// > bar

See also

License

This is released under MIT License.

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago