mobigrid-module 1.1.23 → 1.1.25-beta.10

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