ubk.erp.webpack 1.0.4 → 1.0.7

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/dist/index.d.ts CHANGED
@@ -1,18 +1,32 @@
1
+ import { JSX } from 'react/jsx-runtime';
2
+
1
3
  export declare function AdmissionEnquiry({ token, type }: {
2
4
  token: any;
3
5
  type: any;
4
- }): any;
6
+ }): JSX.Element;
7
+
8
+ export declare function AssignVehicles({ token }: {
9
+ token: any;
10
+ }): JSX.Element;
5
11
 
6
- export declare function ErpDashboard(): any;
12
+ export declare function ErpDashboard(): JSX.Element;
7
13
 
8
14
  export declare function MenuSubmenu({ token, menu }: {
9
15
  token: any;
10
16
  menu: any;
11
- }): any;
17
+ }): JSX.Element;
12
18
 
13
19
  export declare function RoutePage({ routes, onNavigate }: {
14
20
  routes?: never[] | undefined;
15
21
  onNavigate: any;
16
- }): any;
22
+ }): JSX.Element;
23
+
24
+ export declare function TransportRoutes({ token }: {
25
+ token: any;
26
+ }): JSX.Element;
27
+
28
+ export declare function TransportVehicles({ token }: {
29
+ token: any;
30
+ }): JSX.Element;
17
31
 
18
32
  export { }