mobigrid-module 1.1.24 → 1.1.25-beta.3

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