rxjs-props
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

rxjs-props

NPM version Build status Downloads

Usage

import { props } from 'rxjs-props';
 
props({
  str: of('str'),
  num: of(123),
}).subscribe(({ str, num }) => {
  console.log(str === 'str'); // true
  console.log(num === 123); // true
});

Dependencies (0)

    Dev Dependencies (3)

    Package Sidebar

    Install

    npm i rxjs-props

    Weekly Downloads

    1

    Version

    0.0.1

    License

    ISC

    Unpacked Size

    11.3 kB

    Total Files

    9

    Last publish

    Collaborators

    • kolodny