@b9g/crank 0.5.1 → 0.5.2
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.
- package/crank.cjs +2 -2
- package/crank.cjs.map +1 -1
- package/crank.d.ts +7 -7
- package/crank.js +2 -2
- package/crank.js.map +1 -1
- package/dom.cjs +3 -4
- package/dom.cjs.map +1 -1
- package/dom.js +3 -4
- package/dom.js.map +1 -1
- package/package.json +10 -2
- package/umd.js +5 -6
- package/umd.js.map +1 -1
package/crank.cjs
CHANGED
|
@@ -862,8 +862,8 @@ const _ContextImpl = Symbol.for("crank.ContextImpl");
|
|
|
862
862
|
* element tree are connected via contexts. Components can use this tree to
|
|
863
863
|
* communicate data upwards via events and downwards via provisions.
|
|
864
864
|
*
|
|
865
|
-
* @template [
|
|
866
|
-
* component. Used to strongly type the Context iterator methods.
|
|
865
|
+
* @template [T=*] - The expected shape of the props passed to the component,
|
|
866
|
+
* or a component function. Used to strongly type the Context iterator methods.
|
|
867
867
|
* @template [TResult=*] - The readable element value type. It is used in
|
|
868
868
|
* places such as the return value of refresh and the argument passed to
|
|
869
869
|
* schedule and cleanup callbacks.
|