plotline-engage 3.0.8 → 3.0.9

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/index.d.ts +7 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -9,5 +9,11 @@ declare class plotline {
9
9
  debug(): void;
10
10
  notifyScroll(): void;
11
11
  }
12
+ declare class PScrollView extends React.Component<ScrollViewProps> {
13
+ }
14
+
15
+ declare class PFlatList<T> extends React.Component<FlatListProps<T>> {
16
+ }
12
17
  declare const Plotline: plotline;
13
- export default Plotline;
18
+ export { PScrollView, PFlatList };
19
+ export default Plotline;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plotline-engage",
3
- "version": "3.0.8",
3
+ "version": "3.0.9",
4
4
  "description": "React Native plugin for Plotline",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"