hrenpack_js 3.1.0 → 3.1.2
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/LICENSE +1 -1
- package/arraywork.d.ts +6 -0
- package/arraywork.js +6 -0
- package/auto.d.ts +6 -0
- package/auto.js +6 -0
- package/classes.d.ts +6 -0
- package/classes.js +6 -0
- package/compiler.d.ts +6 -0
- package/compiler.js +6 -0
- package/cookie.d.ts +6 -0
- package/cookie.js +6 -0
- package/exceptions.d.ts +6 -0
- package/exceptions.js +6 -0
- package/get_element_types.d.ts +6 -0
- package/get_element_types.js +6 -0
- package/hrenpack.css +6 -0
- package/html.d.ts +6 -0
- package/html.js +6 -0
- package/index.d.ts +210 -204
- package/index.js +933 -927
- package/input.d.ts +6 -0
- package/input.js +6 -0
- package/link.d.ts +6 -0
- package/link.js +6 -0
- package/notifications.d.ts +6 -0
- package/notifications.js +6 -0
- package/package.json +2 -1
- package/styles.d.ts +6 -0
- package/styles.js +6 -0
- package/system.d.ts +6 -0
- package/system.js +6 -0
- package/tags.d.ts +6 -0
- package/tags.js +6 -0
- package/types.d.ts +6 -0
- package/url.d.ts +6 -0
- package/url.js +6 -0
- package/uuid.d.ts +6 -0
- package/uuid.js +6 -0
package/LICENSE
CHANGED
package/arraywork.d.ts
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* hrenpack_js 3.1.2
|
|
3
|
+
* Copyright (c) 2024-2025, Маг Ильяс DOMA (MagIlyasDOMA)
|
|
4
|
+
* Licensed under MIT (https://github.com/MagIlyasDOMA/hrenpack_js/blob/main/LICENSE)
|
|
5
|
+
*/
|
|
6
|
+
|
|
1
7
|
declare function arrayIsEmpty(arr: any[]): boolean;
|
|
2
8
|
declare function arraysIsEqual(array1: any[], array2: any[], strict?: boolean): boolean;
|
|
3
9
|
//# sourceMappingURL=arraywork.d.ts.map
|
package/arraywork.js
CHANGED
package/auto.d.ts
CHANGED
package/auto.js
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* hrenpack_js 3.1.2
|
|
3
|
+
* Copyright (c) 2024-2025, Маг Ильяс DOMA (MagIlyasDOMA)
|
|
4
|
+
* Licensed under MIT (https://github.com/MagIlyasDOMA/hrenpack_js/blob/main/LICENSE)
|
|
5
|
+
*/
|
|
6
|
+
|
|
1
7
|
"use strict";
|
|
2
8
|
const stylesRoot = getComputedStyle(document.documentElement);
|
|
3
9
|
//# sourceMappingURL=auto.js.map
|
package/classes.d.ts
CHANGED
package/classes.js
CHANGED
package/compiler.d.ts
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* hrenpack_js 3.1.2
|
|
3
|
+
* Copyright (c) 2024-2025, Маг Ильяс DOMA (MagIlyasDOMA)
|
|
4
|
+
* Licensed under MIT (https://github.com/MagIlyasDOMA/hrenpack_js/blob/main/LICENSE)
|
|
5
|
+
*/
|
|
6
|
+
|
|
1
7
|
declare function downloadTextAsFile(filename: string, text: string): void;
|
|
2
8
|
//# sourceMappingURL=compiler.d.ts.map
|
package/compiler.js
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* hrenpack_js 3.1.2
|
|
3
|
+
* Copyright (c) 2024-2025, Маг Ильяс DOMA (MagIlyasDOMA)
|
|
4
|
+
* Licensed under MIT (https://github.com/MagIlyasDOMA/hrenpack_js/blob/main/LICENSE)
|
|
5
|
+
*/
|
|
6
|
+
|
|
1
7
|
"use strict";
|
|
2
8
|
function downloadTextAsFile(filename, text) {
|
|
3
9
|
const blob = new Blob([text], { type: 'text/plain' });
|
package/cookie.d.ts
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* hrenpack_js 3.1.2
|
|
3
|
+
* Copyright (c) 2024-2025, Маг Ильяс DOMA (MagIlyasDOMA)
|
|
4
|
+
* Licensed under MIT (https://github.com/MagIlyasDOMA/hrenpack_js/blob/main/LICENSE)
|
|
5
|
+
*/
|
|
6
|
+
|
|
1
7
|
declare function getCookie(name: string): NullStr;
|
|
2
8
|
declare function setCookie(name: string, value: string, days?: NullNum, path?: string): void;
|
|
3
9
|
declare function hasCookie(name: string): boolean;
|
package/cookie.js
CHANGED
package/exceptions.d.ts
CHANGED
package/exceptions.js
CHANGED
package/get_element_types.d.ts
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* hrenpack_js 3.1.2
|
|
3
|
+
* Copyright (c) 2024-2025, Маг Ильяс DOMA (MagIlyasDOMA)
|
|
4
|
+
* Licensed under MIT (https://github.com/MagIlyasDOMA/hrenpack_js/blob/main/LICENSE)
|
|
5
|
+
*/
|
|
6
|
+
|
|
1
7
|
declare function button_submit(parent: HTMLElement): HTMLButtonElement | null;
|
|
2
8
|
//# sourceMappingURL=get_element_types.d.ts.map
|
package/get_element_types.js
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* hrenpack_js 3.1.2
|
|
3
|
+
* Copyright (c) 2024-2025, Маг Ильяс DOMA (MagIlyasDOMA)
|
|
4
|
+
* Licensed under MIT (https://github.com/MagIlyasDOMA/hrenpack_js/blob/main/LICENSE)
|
|
5
|
+
*/
|
|
6
|
+
|
|
1
7
|
"use strict";
|
|
2
8
|
function button_submit(parent) {
|
|
3
9
|
const buttons = parent.querySelectorAll('button');
|
package/hrenpack.css
CHANGED
package/html.d.ts
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* hrenpack_js 3.1.2
|
|
3
|
+
* Copyright (c) 2024-2025, Маг Ильяс DOMA (MagIlyasDOMA)
|
|
4
|
+
* Licensed under MIT (https://github.com/MagIlyasDOMA/hrenpack_js/blob/main/LICENSE)
|
|
5
|
+
*/
|
|
6
|
+
|
|
1
7
|
declare const escapeChars: StringDict;
|
|
2
8
|
declare function togglePassword(passwordInput: HTMLInputElement): void;
|
|
3
9
|
declare function isTextWrapped(element: HTMLElement): boolean;
|
package/html.js
CHANGED
package/index.d.ts
CHANGED
|
@@ -1,204 +1,210 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
private
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
declare function
|
|
42
|
-
//# sourceMappingURL=
|
|
43
|
-
|
|
44
|
-
// ===== File:
|
|
45
|
-
declare
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
//# sourceMappingURL=
|
|
49
|
-
|
|
50
|
-
// ===== File:
|
|
51
|
-
declare
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
declare function
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
declare
|
|
62
|
-
declare function
|
|
63
|
-
declare function
|
|
64
|
-
declare function
|
|
65
|
-
declare function
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
declare function
|
|
70
|
-
declare function
|
|
71
|
-
declare function
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
declare function
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
declare function
|
|
111
|
-
declare function
|
|
112
|
-
declare function
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
private
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
get
|
|
140
|
-
|
|
141
|
-
private
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
private
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
private
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
private
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
type
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
//# sourceMappingURL=
|
|
200
|
-
|
|
201
|
-
// ===== File:
|
|
202
|
-
declare function
|
|
203
|
-
|
|
204
|
-
|
|
1
|
+
/*
|
|
2
|
+
* hrenpack_js 3.1.2
|
|
3
|
+
* Copyright (c) 2024-2025, Маг Ильяс DOMA (MagIlyasDOMA)
|
|
4
|
+
* Licensed under MIT (https://github.com/MagIlyasDOMA/hrenpack_js/blob/main/LICENSE)
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// @ts-nocheck
|
|
8
|
+
|
|
9
|
+
// ===== File: arraywork.d.ts =====
|
|
10
|
+
declare function arrayIsEmpty(arr: any[]): boolean;
|
|
11
|
+
declare function arraysIsEqual(array1: any[], array2: any[], strict?: boolean): boolean;
|
|
12
|
+
//# sourceMappingURL=arraywork.d.ts.map
|
|
13
|
+
|
|
14
|
+
// ===== File: auto.d.ts =====
|
|
15
|
+
declare const stylesRoot: CSSStyleDeclaration;
|
|
16
|
+
//# sourceMappingURL=auto.d.ts.map
|
|
17
|
+
|
|
18
|
+
// ===== File: classes.d.ts =====
|
|
19
|
+
declare class ClickableLinksFactory {
|
|
20
|
+
private readonly urlRegex;
|
|
21
|
+
private walk;
|
|
22
|
+
private get_anchor;
|
|
23
|
+
private get_clickToCopy;
|
|
24
|
+
clickableLinks(element: HTMLElement): void;
|
|
25
|
+
clickToCopyLinks(element: HTMLElement): void;
|
|
26
|
+
get generatedElements(): NodeListOf<HTMLElement>;
|
|
27
|
+
}
|
|
28
|
+
declare class GETParamsManager {
|
|
29
|
+
private params;
|
|
30
|
+
constructor();
|
|
31
|
+
get<T = string>(key: string, defaultValue?: T): T | string | null;
|
|
32
|
+
set(key: string, value: string | number | boolean): void;
|
|
33
|
+
delete(key: string): void;
|
|
34
|
+
all(): Record<string, string>;
|
|
35
|
+
clear(): void;
|
|
36
|
+
private updateURL;
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=classes.d.ts.map
|
|
39
|
+
|
|
40
|
+
// ===== File: compiler.d.ts =====
|
|
41
|
+
declare function downloadTextAsFile(filename: string, text: string): void;
|
|
42
|
+
//# sourceMappingURL=compiler.d.ts.map
|
|
43
|
+
|
|
44
|
+
// ===== File: cookie.d.ts =====
|
|
45
|
+
declare function getCookie(name: string): NullStr;
|
|
46
|
+
declare function setCookie(name: string, value: string, days?: NullNum, path?: string): void;
|
|
47
|
+
declare function hasCookie(name: string): boolean;
|
|
48
|
+
//# sourceMappingURL=cookie.d.ts.map
|
|
49
|
+
|
|
50
|
+
// ===== File: exceptions.d.ts =====
|
|
51
|
+
declare class NotAuthorizedError extends Error {
|
|
52
|
+
constructor();
|
|
53
|
+
}
|
|
54
|
+
//# sourceMappingURL=exceptions.d.ts.map
|
|
55
|
+
|
|
56
|
+
// ===== File: get_element_types.d.ts =====
|
|
57
|
+
declare function button_submit(parent: HTMLElement): HTMLButtonElement | null;
|
|
58
|
+
//# sourceMappingURL=get_element_types.d.ts.map
|
|
59
|
+
|
|
60
|
+
// ===== File: html.d.ts =====
|
|
61
|
+
declare const escapeChars: StringDict;
|
|
62
|
+
declare function togglePassword(passwordInput: HTMLInputElement): void;
|
|
63
|
+
declare function isTextWrapped(element: HTMLElement): boolean;
|
|
64
|
+
declare function notArrayEmpty(array: any[]): boolean;
|
|
65
|
+
declare function get_tagName(element: HTMLElement): string;
|
|
66
|
+
declare function element_toHTMLText(element: HTMLElement): string;
|
|
67
|
+
declare function element_to_div(element: HTMLElement): HTMLDivElement;
|
|
68
|
+
declare function password_format(shownPasswordHTML: string, hiddenPasswordHTML: string): void;
|
|
69
|
+
declare function escapeHTML(html: string): string;
|
|
70
|
+
declare function strFormat(template: string, ...args: any[]): string;
|
|
71
|
+
declare function elementToHyperlink(element: HTMLElement, href: string, cursorPointer?: boolean, preventDefault?: boolean): HTMLElement;
|
|
72
|
+
//# sourceMappingURL=html.d.ts.map
|
|
73
|
+
|
|
74
|
+
// ===== File: input.d.ts =====
|
|
75
|
+
declare function getInputCursorPosition(input: HTMLInputElement): number;
|
|
76
|
+
declare function copyInputToClipboard(input: HTMLInputElement): void;
|
|
77
|
+
declare function clearInput_and_addLastSymbol(input: HTMLInputElement): void;
|
|
78
|
+
declare function getInputLabel(input: HTMLInputElement): HTMLLabelElement;
|
|
79
|
+
//# sourceMappingURL=input.d.ts.map
|
|
80
|
+
|
|
81
|
+
// ===== File: link.d.ts =====
|
|
82
|
+
declare function loadCSS(href: string): void;
|
|
83
|
+
//# sourceMappingURL=link.d.ts.map
|
|
84
|
+
|
|
85
|
+
// ===== File: notifications.d.ts =====
|
|
86
|
+
declare function pushNotification(title?: string, body?: string, icon?: NullStr): void;
|
|
87
|
+
declare class HyperTextNotification {
|
|
88
|
+
bottom: string;
|
|
89
|
+
right: string;
|
|
90
|
+
backgroundColor: string;
|
|
91
|
+
color: string;
|
|
92
|
+
padding: string;
|
|
93
|
+
borderRadius: string;
|
|
94
|
+
timeout: number;
|
|
95
|
+
constructor({ bottom, right, backgroundColor, color, padding, borderRadius, timeout }?: {
|
|
96
|
+
bottom?: string | undefined;
|
|
97
|
+
right?: string | undefined;
|
|
98
|
+
backgroundColor?: string | undefined;
|
|
99
|
+
color?: string | undefined;
|
|
100
|
+
padding?: string | undefined;
|
|
101
|
+
borderRadius?: string | undefined;
|
|
102
|
+
timeout?: number | undefined;
|
|
103
|
+
});
|
|
104
|
+
show(message: string, timeout?: number): void;
|
|
105
|
+
}
|
|
106
|
+
//# sourceMappingURL=notifications.d.ts.map
|
|
107
|
+
|
|
108
|
+
// ===== File: styles.d.ts =====
|
|
109
|
+
declare function input_type_fc(input: HTMLInputElement): boolean;
|
|
110
|
+
declare function input_form_control(form: HTMLFormElement): void;
|
|
111
|
+
declare function input_form_control_unline(form: HTMLFormElement): void;
|
|
112
|
+
declare function intToPixel(number?: NumStr): string;
|
|
113
|
+
//# sourceMappingURL=styles.d.ts.map
|
|
114
|
+
|
|
115
|
+
// ===== File: system.d.ts =====
|
|
116
|
+
declare function getSystemTheme(): NullStr;
|
|
117
|
+
declare function copyTextToClipboard(text: string): void;
|
|
118
|
+
declare function redirectBackOrClose(default_url?: string): void;
|
|
119
|
+
declare function getHost(): string;
|
|
120
|
+
//# sourceMappingURL=system.d.ts.map
|
|
121
|
+
|
|
122
|
+
// ===== File: tags.d.ts =====
|
|
123
|
+
type StepElementStatus = 'uncomplete' | 'active' | 'complete';
|
|
124
|
+
interface StepbarElement extends HTMLElement {
|
|
125
|
+
currentStep: number;
|
|
126
|
+
}
|
|
127
|
+
declare class AbbreviatedNumber extends HTMLElement {
|
|
128
|
+
isShortened: boolean;
|
|
129
|
+
originalNumber: number;
|
|
130
|
+
constructor();
|
|
131
|
+
static get observedAttributes(): string[];
|
|
132
|
+
private toggle;
|
|
133
|
+
private getCurrentLang;
|
|
134
|
+
private formatNumber;
|
|
135
|
+
private render;
|
|
136
|
+
}
|
|
137
|
+
declare class StepElement extends HTMLElement {
|
|
138
|
+
constructor();
|
|
139
|
+
static get observedAttributes(): string[];
|
|
140
|
+
get index(): number;
|
|
141
|
+
private get active();
|
|
142
|
+
private set active(value);
|
|
143
|
+
private get completed();
|
|
144
|
+
private set completed(value);
|
|
145
|
+
get label(): string;
|
|
146
|
+
set label(value: string);
|
|
147
|
+
private reset;
|
|
148
|
+
get status(): StepElementStatus;
|
|
149
|
+
set status(value: StepElementStatus);
|
|
150
|
+
connectedCallback(): void;
|
|
151
|
+
}
|
|
152
|
+
declare class Stepbar extends HTMLElement {
|
|
153
|
+
private _observer;
|
|
154
|
+
constructor();
|
|
155
|
+
static get observedAttributes(): string[];
|
|
156
|
+
attributeChangedCallback(name: string, oldValue: any, newValue: any): void;
|
|
157
|
+
connectedCallback(): void;
|
|
158
|
+
disconnectedCallback(): void;
|
|
159
|
+
private updateSteps;
|
|
160
|
+
get currentStep(): number;
|
|
161
|
+
set currentStep(step: number);
|
|
162
|
+
}
|
|
163
|
+
declare class HTMLFile extends HTMLElement {
|
|
164
|
+
constructor();
|
|
165
|
+
get src(): string;
|
|
166
|
+
set src(value: string);
|
|
167
|
+
static get observedAttributes(): string[];
|
|
168
|
+
connectedCallback(): void;
|
|
169
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
170
|
+
private loadContent;
|
|
171
|
+
private executeScripts;
|
|
172
|
+
private loadExternalScript;
|
|
173
|
+
private executeInlineScript;
|
|
174
|
+
private get loaded();
|
|
175
|
+
reload(): Promise<void>;
|
|
176
|
+
get content(): string;
|
|
177
|
+
}
|
|
178
|
+
declare class ClickToCopy extends HTMLElement {
|
|
179
|
+
private notification;
|
|
180
|
+
constructor();
|
|
181
|
+
get notificationText(): string;
|
|
182
|
+
set notificationText(value: string);
|
|
183
|
+
get isNotified(): boolean;
|
|
184
|
+
set isNotified(value: boolean);
|
|
185
|
+
connectedCallback(): void;
|
|
186
|
+
}
|
|
187
|
+
//# sourceMappingURL=tags.d.ts.map
|
|
188
|
+
|
|
189
|
+
// ===== File: types.d.ts =====
|
|
190
|
+
type NullStr = string | null;
|
|
191
|
+
type NullNum = number | null;
|
|
192
|
+
type Dict = {
|
|
193
|
+
[key: string]: any;
|
|
194
|
+
};
|
|
195
|
+
type StringDict = {
|
|
196
|
+
[key: string]: string;
|
|
197
|
+
};
|
|
198
|
+
type NumStr = number | string;
|
|
199
|
+
//# sourceMappingURL=types.d.ts.map
|
|
200
|
+
|
|
201
|
+
// ===== File: url.d.ts =====
|
|
202
|
+
declare function isAbsoluteUrl(url: string): boolean;
|
|
203
|
+
declare function combineUrls(baseUrl: string, relativeUrl: string): string;
|
|
204
|
+
declare function getScriptSite(script: HTMLScriptElement): string;
|
|
205
|
+
//# sourceMappingURL=url.d.ts.map
|
|
206
|
+
|
|
207
|
+
// ===== File: uuid.d.ts =====
|
|
208
|
+
declare function generateUUIDv4(): string;
|
|
209
|
+
//# sourceMappingURL=uuid.d.ts.map
|
|
210
|
+
|