markuno_lib 1.2.129 → 1.2.131
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/bin/bus_utils.js +1 -2
- package/bin/markcad.js +1 -1
- package/package.json +1 -1
- package/types/bus_utils.d.ts +34 -34
- package/types/markcad.d.ts +1 -1
package/package.json
CHANGED
package/types/bus_utils.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const Ae: {
|
|
2
2
|
buslist: {};
|
|
3
|
-
on(
|
|
4
|
-
emit(
|
|
5
|
-
off(
|
|
6
|
-
$on(
|
|
7
|
-
$off(
|
|
8
|
-
$emit(
|
|
3
|
+
on(e: any, t: any): number;
|
|
4
|
+
emit(e: any, ...t: any[]): void;
|
|
5
|
+
off(e: any, t: any): void;
|
|
6
|
+
$on(e: any, t: any): void;
|
|
7
|
+
$off(e: any, t: any): void;
|
|
8
|
+
$emit(e: any, ...t: any[]): void;
|
|
9
9
|
};
|
|
10
|
-
export function formatDate(
|
|
11
|
-
export function getdim(
|
|
12
|
-
export function listfromstring(
|
|
10
|
+
export function formatDate(e: any): string;
|
|
11
|
+
export function getdim(e: any, t: any, a: any, n: any, i: any, r: any, s: any, o: any, l: any): string;
|
|
12
|
+
export function listfromstring(e: any): any[];
|
|
13
13
|
export function myuuid(): number;
|
|
14
|
-
export function post_utils(
|
|
14
|
+
export function post_utils(e?: {}): {
|
|
15
15
|
post: {
|
|
16
16
|
baseurl: string;
|
|
17
17
|
user: {};
|
|
@@ -19,13 +19,13 @@ export function post_utils(t?: {}): {
|
|
|
19
19
|
readonly oggi: any;
|
|
20
20
|
readonly oggif: any;
|
|
21
21
|
readonly fingerprint: string;
|
|
22
|
-
isauth(
|
|
23
|
-
fullurl(
|
|
24
|
-
fullget(
|
|
25
|
-
fetch(
|
|
26
|
-
post(
|
|
22
|
+
isauth(e: any): boolean;
|
|
23
|
+
fullurl(e: any): any;
|
|
24
|
+
fullget(e: any, a: any, n: any): any;
|
|
25
|
+
fetch(e: any, a: any, n: any, i?: boolean): Promise<any>;
|
|
26
|
+
post(e: any, t: any, a: any, n?: boolean): Promise<any>;
|
|
27
27
|
};
|
|
28
|
-
PP: (
|
|
28
|
+
PP: (e: any, a: any, s: any, o: any) => Promise<any>;
|
|
29
29
|
P: {
|
|
30
30
|
baseurl: string;
|
|
31
31
|
user: {};
|
|
@@ -33,13 +33,13 @@ export function post_utils(t?: {}): {
|
|
|
33
33
|
readonly oggi: any;
|
|
34
34
|
readonly oggif: any;
|
|
35
35
|
readonly fingerprint: string;
|
|
36
|
-
isauth(
|
|
37
|
-
fullurl(
|
|
38
|
-
fullget(
|
|
39
|
-
fetch(
|
|
40
|
-
post(
|
|
36
|
+
isauth(e: any): boolean;
|
|
37
|
+
fullurl(e: any): any;
|
|
38
|
+
fullget(e: any, a: any, n: any): any;
|
|
39
|
+
fetch(e: any, a: any, n: any, i?: boolean): Promise<any>;
|
|
40
|
+
post(e: any, t: any, a: any, n?: boolean): Promise<any>;
|
|
41
41
|
};
|
|
42
|
-
isauth: (
|
|
42
|
+
isauth: (e: any) => boolean;
|
|
43
43
|
userguest: {
|
|
44
44
|
id: number;
|
|
45
45
|
name: string;
|
|
@@ -52,15 +52,15 @@ export function post_utils(t?: {}): {
|
|
|
52
52
|
token: string;
|
|
53
53
|
rtk: string;
|
|
54
54
|
};
|
|
55
|
-
round2: (
|
|
56
|
-
parsetree: (
|
|
57
|
-
getStorage: (
|
|
58
|
-
setStorage: (
|
|
59
|
-
readfile: (
|
|
60
|
-
downloadfile: (
|
|
55
|
+
round2: (e: any) => number;
|
|
56
|
+
parsetree: (e: any, t: any) => void;
|
|
57
|
+
getStorage: (e: any, t: any) => any;
|
|
58
|
+
setStorage: (e: any, t: any) => void;
|
|
59
|
+
readfile: (e: any) => Promise<any>;
|
|
60
|
+
downloadfile: (e: any) => void;
|
|
61
61
|
};
|
|
62
|
-
export function strDate(
|
|
63
|
-
export function toDateStr(
|
|
64
|
-
export function toEuro(
|
|
65
|
-
export function tonum(
|
|
66
|
-
export {
|
|
62
|
+
export function strDate(e: any, t: any): any;
|
|
63
|
+
export function toDateStr(e: any): string;
|
|
64
|
+
export function toEuro(e: any, t: any, a?: string): any;
|
|
65
|
+
export function tonum(e: any, t?: number): number;
|
|
66
|
+
export { Ae as bus };
|
package/types/markcad.d.ts
CHANGED
|
@@ -1121,7 +1121,7 @@ export function getgalleryvariants(e: any): any[];
|
|
|
1121
1121
|
export function getline(t: any, n: any, i?: any): any;
|
|
1122
1122
|
export function getlinesgeom(t: any, n?: number): any;
|
|
1123
1123
|
export function getluce(t: any, n: any, i?: string, r?: number): any;
|
|
1124
|
-
export function getmarker(
|
|
1124
|
+
export function getmarker(t: any, n: any, i: any, r: any, s: any, o: any, a?: {}): any;
|
|
1125
1125
|
export function getmesh(t: any, n: any, i?: number, r?: boolean): any;
|
|
1126
1126
|
export function getmovimento(e: any, t?: any[]): {
|
|
1127
1127
|
readonly tline: number;
|