ubk.erp.webpack 1.0.7 → 1.0.8
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/README.md +84 -58
- package/dist/index.cjs +14 -14
- package/dist/index.d.ts +21 -0
- package/dist/index.js +4223 -2680
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,21 @@
|
|
|
1
1
|
import { JSX } from 'react/jsx-runtime';
|
|
2
2
|
|
|
3
|
+
export declare function AddDriver({ token }: {
|
|
4
|
+
token: any;
|
|
5
|
+
}): JSX.Element;
|
|
6
|
+
|
|
3
7
|
export declare function AdmissionEnquiry({ token, type }: {
|
|
4
8
|
token: any;
|
|
5
9
|
type: any;
|
|
6
10
|
}): JSX.Element;
|
|
7
11
|
|
|
12
|
+
export declare function AssignStudentToTransport({ token, editType, onNavigate, editPagePath, }: {
|
|
13
|
+
token: any;
|
|
14
|
+
editType: any;
|
|
15
|
+
onNavigate: any;
|
|
16
|
+
editPagePath: any;
|
|
17
|
+
}): JSX.Element;
|
|
18
|
+
|
|
8
19
|
export declare function AssignVehicles({ token }: {
|
|
9
20
|
token: any;
|
|
10
21
|
}): JSX.Element;
|
|
@@ -21,6 +32,16 @@ export declare function RoutePage({ routes, onNavigate }: {
|
|
|
21
32
|
onNavigate: any;
|
|
22
33
|
}): JSX.Element;
|
|
23
34
|
|
|
35
|
+
export declare function RouteTimeTable({ token }: {
|
|
36
|
+
token: any;
|
|
37
|
+
}): JSX.Element;
|
|
38
|
+
|
|
39
|
+
export declare function setBaseUrl(url: any): void;
|
|
40
|
+
|
|
41
|
+
export declare function Stoppage({ token }: {
|
|
42
|
+
token: any;
|
|
43
|
+
}): JSX.Element;
|
|
44
|
+
|
|
24
45
|
export declare function TransportRoutes({ token }: {
|
|
25
46
|
token: any;
|
|
26
47
|
}): JSX.Element;
|