bunja 0.0.6 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bunja.ts +12 -0
  2. package/package.json +1 -1
package/bunja.ts CHANGED
@@ -47,6 +47,18 @@ export function bunja<T, U, V, W>(
47
47
  deps: [Dep<U>, Dep<V>, Dep<W>],
48
48
  init: (u: U, v: V, w: W) => T & BunjaValue
49
49
  ): Bunja<T>;
50
+ export function bunja<T, U, V, W, X>(
51
+ deps: [Dep<U>, Dep<V>, Dep<W>, Dep<X>],
52
+ init: (u: U, v: V, w: W, x: X) => T & BunjaValue
53
+ ): Bunja<T>;
54
+ export function bunja<T, U, V, W, X, Y>(
55
+ deps: [Dep<U>, Dep<V>, Dep<W>, Dep<X>, Dep<Y>],
56
+ init: (u: U, v: V, w: W, x: X, y: Y) => T & BunjaValue
57
+ ): Bunja<T>;
58
+ export function bunja<T, U, V, W, X, Y, Z>(
59
+ deps: [Dep<U>, Dep<V>, Dep<W>, Dep<X>, Dep<Y>, Dep<Z>],
60
+ init: (u: U, v: V, w: W, x: X, y: Y, z: Z) => T & BunjaValue
61
+ ): Bunja<T>;
50
62
  export function bunja<T, const U extends any[]>(
51
63
  deps: { [K in keyof U]: Dep<U[K]> },
52
64
  init: (...args: U) => T & BunjaValue
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bunja",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "State Lifetime Manager for React",
5
5
  "main": "bunja.ts",
6
6
  "scripts": {},