brew-js-react 0.5.4 → 0.5.6

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/brew.d.ts ADDED
@@ -0,0 +1,9 @@
1
+ declare namespace Brew {
2
+ interface PageEvent {
3
+ /**
4
+ * Returns the view component associated to target.
5
+ * The property is only available in `pageenter` or `pageleave event.
6
+ */
7
+ readonly view?: import("./view").ViewComponent<any>;
8
+ }
9
+ }