mobigrid-module 1.1.10 → 1.1.12

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.d.ts CHANGED
@@ -1,9 +1,11 @@
1
1
  import React from "react";
2
2
  interface ContainerProps {
3
- configUrl: string;
4
- preJsUrl: string;
3
+ configUrl?: string;
4
+ preJsUrl?: string;
5
+ configJson?: any;
6
+ preJs?: any;
5
7
  itemsPerPage?: number;
6
8
  children?: React.ReactNode;
7
9
  }
8
- declare const MobigridModule: ({ configUrl, preJsUrl, itemsPerPage, children, }: ContainerProps) => React.JSX.Element;
10
+ declare const MobigridModule: ({ configUrl, preJsUrl, configJson, preJs, itemsPerPage, children, }: ContainerProps) => React.JSX.Element;
9
11
  export { MobigridModule as default };