@tspro/ts-utils-lib 1.21.0 → 2.1.0
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/CHANGELOG.md +17 -0
- package/README.md +70 -1
- package/dist/index.d.mts +278 -876
- package/dist/index.d.ts +278 -876
- package/dist/index.es5.iife.js +1 -0
- package/dist/index.es5.polyfilled.iife.js +1 -0
- package/dist/index.js +1034 -2214
- package/dist/index.mjs +999 -2152
- package/package.json +9 -6
package/dist/index.d.mts
CHANGED
|
@@ -6,193 +6,108 @@ declare function getEnumValues<E extends EnumObject>(e: E): EnumValue<E>[];
|
|
|
6
6
|
declare function getEnumEntries<E extends EnumObject>(e: E): [keyof E, EnumValue<E>][];
|
|
7
7
|
declare function getEnumKey<E extends EnumObject>(e: E, value: EnumValue<E>): keyof E | undefined;
|
|
8
8
|
declare function forEachEnum<E extends EnumObject>(e: E, callback: (key: keyof E, value: E[keyof E]) => void): void;
|
|
9
|
-
declare function isEnumValue$2<E extends EnumObject>(e: E, value: unknown): value is EnumValue<E>;
|
|
10
|
-
declare function assertEnumValue<E extends EnumObject>(e: E, value: unknown): asserts value is EnumValue<E>;
|
|
11
9
|
|
|
12
10
|
type index$8_EnumKey<E extends EnumObject> = EnumKey<E>;
|
|
13
11
|
type index$8_EnumObject = EnumObject;
|
|
14
12
|
type index$8_EnumValue<E extends EnumObject> = EnumValue<E>;
|
|
15
|
-
declare const index$8_assertEnumValue: typeof assertEnumValue;
|
|
16
13
|
declare const index$8_forEachEnum: typeof forEachEnum;
|
|
17
14
|
declare const index$8_getEnumEntries: typeof getEnumEntries;
|
|
18
15
|
declare const index$8_getEnumKey: typeof getEnumKey;
|
|
19
16
|
declare const index$8_getEnumKeys: typeof getEnumKeys;
|
|
20
17
|
declare const index$8_getEnumValues: typeof getEnumValues;
|
|
21
18
|
declare namespace index$8 {
|
|
22
|
-
export { type index$8_EnumKey as EnumKey, type index$8_EnumObject as EnumObject, type index$8_EnumValue as EnumValue, index$
|
|
19
|
+
export { type index$8_EnumKey as EnumKey, type index$8_EnumObject as EnumObject, type index$8_EnumValue as EnumValue, index$8_forEachEnum as forEachEnum, index$8_getEnumEntries as getEnumEntries, index$8_getEnumKey as getEnumKey, index$8_getEnumKeys as getEnumKeys, index$8_getEnumValues as getEnumValues };
|
|
23
20
|
}
|
|
24
21
|
|
|
25
22
|
type ErrorConstructor = new (msg: string) => Error;
|
|
26
23
|
declare function setErrorClass(errorClass?: ErrorConstructor): void;
|
|
27
|
-
/**
|
|
28
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
29
|
-
* @private
|
|
30
|
-
*/
|
|
31
|
-
declare function interrupt(msg?: string): never;
|
|
32
|
-
/**
|
|
33
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
34
|
-
* @private
|
|
35
|
-
*/
|
|
36
|
-
declare function assertEnum<E extends EnumObject>(enumVal: unknown, enumObj: E, name?: string): asserts enumVal is E[keyof E];
|
|
37
|
-
/**
|
|
38
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
39
|
-
* @private
|
|
40
|
-
*/
|
|
41
|
-
declare function int(value: unknown, msg?: string): number;
|
|
42
|
-
/**
|
|
43
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
44
|
-
* @private
|
|
45
|
-
*/
|
|
46
|
-
declare function eq<T>(value1: T, value2: T, msg?: string): T;
|
|
47
|
-
/**
|
|
48
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
49
|
-
* @private
|
|
50
|
-
*/
|
|
51
|
-
declare function int_eq(value: unknown, compareTo: unknown, msg?: string): number;
|
|
52
|
-
/**
|
|
53
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
54
|
-
* @private
|
|
55
|
-
*/
|
|
56
|
-
declare function int_lt(value: unknown, compareTo: unknown, msg?: string): number;
|
|
57
|
-
/**
|
|
58
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
59
|
-
* @private
|
|
60
|
-
*/
|
|
61
|
-
declare function int_lte(value: unknown, compareTo: unknown, msg?: string): number;
|
|
62
|
-
/**
|
|
63
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
64
|
-
* @private
|
|
65
|
-
*/
|
|
66
|
-
declare function int_gt(value: unknown, compareTo: unknown, msg?: string): number;
|
|
67
|
-
/**
|
|
68
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
69
|
-
* @private
|
|
70
|
-
*/
|
|
71
|
-
declare function int_gte(value: unknown, compareTo: unknown, msg?: string): number;
|
|
72
|
-
/**
|
|
73
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
74
|
-
* @private
|
|
75
|
-
*/
|
|
76
|
-
declare function int_between(value: unknown, min: unknown, max: unknown, msg?: string): number;
|
|
77
|
-
/**
|
|
78
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
79
|
-
* @private
|
|
80
|
-
*/
|
|
81
|
-
declare function int_between_exclusive(value: unknown, min: unknown, max: unknown, msg?: string): number;
|
|
82
|
-
/**
|
|
83
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
84
|
-
* @private
|
|
85
|
-
*/
|
|
86
|
-
declare function odd(value: unknown, msg?: string): number;
|
|
87
|
-
/**
|
|
88
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
89
|
-
* @private
|
|
90
|
-
*/
|
|
91
|
-
declare function even(value: unknown, msg?: string): number;
|
|
92
|
-
/**
|
|
93
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
94
|
-
* @private
|
|
95
|
-
*/
|
|
96
|
-
declare function in_group<T>(value: T, group: ReadonlyArray<T>, msg?: string): T;
|
|
97
|
-
/**
|
|
98
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
99
|
-
* @private
|
|
100
|
-
*/
|
|
101
|
-
declare function finite(value: unknown, msg?: string): number;
|
|
102
|
-
/**
|
|
103
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
104
|
-
* @private
|
|
105
|
-
*/
|
|
106
|
-
declare function array_id<T>(array: Readonly<T[]>, index: unknown, msg?: string): number;
|
|
107
|
-
/**
|
|
108
|
-
* @deprecated - Wil be removed in v2.0.0.
|
|
109
|
-
* @private
|
|
110
|
-
*/
|
|
111
|
-
declare function array_elem<T>(array: Readonly<T[]>, index: number, msg?: string): T;
|
|
112
24
|
declare function assert<T>(condition: T, msg?: string): void;
|
|
113
|
-
declare function require<T>(
|
|
114
|
-
declare function requireDefined<T>(
|
|
25
|
+
declare function require<T>(val: T | null | undefined, msg?: string): T;
|
|
26
|
+
declare function requireDefined<T>(val: T | undefined, msg?: string): T;
|
|
27
|
+
declare function requireElement<E>(index: unknown, array: ReadonlyArray<E>, msg?: string): E;
|
|
115
28
|
declare function fail(msg?: string): never;
|
|
116
|
-
declare function
|
|
117
|
-
declare function isDeepEqual$1(
|
|
118
|
-
declare function isUndefined$1(
|
|
119
|
-
declare function isNull$1(
|
|
120
|
-
declare function isNullish$1(
|
|
121
|
-
declare function
|
|
122
|
-
declare function
|
|
123
|
-
declare function
|
|
124
|
-
declare function
|
|
125
|
-
declare function
|
|
126
|
-
declare function
|
|
127
|
-
declare function
|
|
128
|
-
declare function
|
|
129
|
-
declare function
|
|
130
|
-
declare function
|
|
131
|
-
declare function
|
|
132
|
-
declare function
|
|
133
|
-
declare function
|
|
134
|
-
declare function
|
|
135
|
-
declare function
|
|
136
|
-
declare function
|
|
137
|
-
declare function
|
|
138
|
-
declare function
|
|
139
|
-
declare function
|
|
140
|
-
declare function
|
|
141
|
-
declare function
|
|
142
|
-
declare function
|
|
143
|
-
declare function
|
|
144
|
-
declare function
|
|
145
|
-
declare function
|
|
146
|
-
declare function
|
|
147
|
-
declare function
|
|
148
|
-
declare function
|
|
149
|
-
declare function
|
|
150
|
-
declare function
|
|
151
|
-
declare function
|
|
152
|
-
declare function
|
|
153
|
-
declare function
|
|
154
|
-
declare function
|
|
155
|
-
declare function
|
|
156
|
-
declare function
|
|
157
|
-
declare function
|
|
158
|
-
declare function
|
|
159
|
-
declare function
|
|
160
|
-
declare function
|
|
161
|
-
declare function
|
|
162
|
-
declare function
|
|
163
|
-
declare function
|
|
164
|
-
declare function
|
|
165
|
-
declare function
|
|
166
|
-
declare function
|
|
167
|
-
declare function
|
|
168
|
-
declare function
|
|
169
|
-
declare function
|
|
29
|
+
declare function isStrictEqual$1<T = any>(val1: T, val2: unknown, msg?: string): T;
|
|
30
|
+
declare function isDeepEqual$1<T = any>(val1: T, val2: unknown, msg?: string): T;
|
|
31
|
+
declare function isUndefined$1(val: unknown, msg?: string): undefined;
|
|
32
|
+
declare function isNull$1(val: unknown, msg?: string): null;
|
|
33
|
+
declare function isNullish$1(val: unknown, msg?: string): null | undefined;
|
|
34
|
+
declare function isDefined$1<T>(val: T, msg?: string): Exclude<T, undefined>;
|
|
35
|
+
declare function isNonNull$1<T>(val: T, msg?: string): Exclude<T, null>;
|
|
36
|
+
declare function isObject$1(val: unknown, msg?: string): Record<string, unknown>;
|
|
37
|
+
declare function isEmptyObject$1(val: unknown, msg?: string): Record<string, unknown>;
|
|
38
|
+
declare function isPlainObject$1(val: unknown, msg?: string): Record<string, unknown>;
|
|
39
|
+
declare function isObjectOrUndefined$1(val: unknown, msg?: string): Record<string, unknown> | undefined;
|
|
40
|
+
declare function isTypedObject$1<T extends object>(val: unknown, keys: (keyof T)[], msg?: string): HasProps<T>;
|
|
41
|
+
declare function isArray$1<T>(val: unknown, msg?: string): T[];
|
|
42
|
+
declare function isArrayOrUndefined$1(val: unknown, msg?: string): val is unknown[] | undefined;
|
|
43
|
+
declare function isEmptyArray$1<T = any>(val: T[], msg?: string): asserts val is T[];
|
|
44
|
+
declare function isNonEmptyArray$1<T = any>(val: T[], msg?: string): asserts val is T[];
|
|
45
|
+
declare function isEmptyArrayOrUndefined$1<T = any>(val: unknown, msg?: string): asserts val is T[] | undefined;
|
|
46
|
+
declare function isNonEmptyArrayOrUndefined$1<T = any>(val: unknown, msg?: string): asserts val is T[] | undefined;
|
|
47
|
+
declare function isString$1(val: unknown, msg?: string): string;
|
|
48
|
+
declare function isEmptyString$1(val: unknown, msg?: string): "";
|
|
49
|
+
declare function isNonEmptyString$1(val: unknown, msg?: string): string;
|
|
50
|
+
declare function isStringOrUndefined$1(val: unknown, msg?: string): string | undefined;
|
|
51
|
+
declare function isEmptyStringOrUndefined$1(val: unknown, msg?: string): "" | undefined;
|
|
52
|
+
declare function isNonEmptyStringOrUndefined$1(val: unknown, msg?: string): string | undefined;
|
|
53
|
+
declare function isBoolean$1(val: unknown, msg?: string): boolean;
|
|
54
|
+
declare function isBooleanOrUndefined$1(val: unknown, msg?: string): boolean | undefined;
|
|
55
|
+
declare function isTrue$1(val: unknown, msg?: string): true;
|
|
56
|
+
declare function isTrueOrUndefined$1(val: unknown, msg?: string): true | undefined;
|
|
57
|
+
declare function isFalse$1(val: unknown, msg?: string): false;
|
|
58
|
+
declare function isFalseOrUndefined$1(val: unknown, msg?: string): false | undefined;
|
|
59
|
+
declare function isFunction$1<T extends (...args: any[]) => any>(val: unknown, msg?: string): T;
|
|
60
|
+
declare function isFunctionOrUndefined$1<T extends (...args: any[]) => any>(val: unknown, msg?: string): T | undefined;
|
|
61
|
+
declare function isEnumValue$1<E extends EnumObject>(val: unknown, enumObject: E, msg?: string): E[keyof E];
|
|
62
|
+
declare function isEnumValueOrUndefined$1<E extends EnumObject>(val: unknown, enumObject: E, msg?: string): E[keyof E] | undefined;
|
|
63
|
+
declare function isNumericString$1(val: unknown, msg?: string): string;
|
|
64
|
+
declare function isBigInt$1(val: unknown, msg?: string): BigInt;
|
|
65
|
+
declare function isNumber$1(val: unknown, msg?: string): number;
|
|
66
|
+
declare function isNumberOrUndefined$1(val: unknown, msg?: string): number | undefined;
|
|
67
|
+
declare function isFinite$1(val: unknown, msg?: string): number;
|
|
68
|
+
declare function isFloat$1(val: unknown, msg?: string): number;
|
|
69
|
+
declare function isInteger$1(val: unknown, msg?: string): number;
|
|
70
|
+
declare function isSafeInteger$1(val: unknown, msg?: string): number;
|
|
71
|
+
declare function isIntegerOrUndefined$1(val: unknown, msg?: string): number | undefined;
|
|
72
|
+
declare function isIntegerEq$1(val: unknown, ref: unknown, msg?: string): number;
|
|
73
|
+
declare function isIntegerGt$1(val: unknown, ref: unknown, msg?: string): number;
|
|
74
|
+
declare function isIntegerGte$1(val: unknown, ref: unknown, msg?: string): number;
|
|
75
|
+
declare function isIntegerLt$1(val: unknown, ref: unknown, msg?: string): number;
|
|
76
|
+
declare function isIntegerLte$1(val: unknown, ref: unknown, msg?: string): number;
|
|
77
|
+
declare function isIntegerBetween$1(val: unknown, min: unknown, max: unknown, msg?: string): number;
|
|
78
|
+
declare function isIntegerBetweenExclusive$1(val: unknown, min: unknown, max: unknown, msg?: string): number;
|
|
79
|
+
declare function isNumberBetween$1(val: unknown, min: unknown, max: unknown, msg?: string): number;
|
|
80
|
+
declare function isNumberBetweenExclusive$1(val: unknown, min: unknown, max: unknown, msg?: string): number;
|
|
81
|
+
declare function isNaNValue$1(val: unknown, msg?: string): number;
|
|
82
|
+
declare function isInfinity$1(val: unknown, msg?: string): number;
|
|
83
|
+
declare function isPosInfinity$1(val: unknown, msg?: string): number;
|
|
84
|
+
declare function isNegInfinity$1(val: unknown, msg?: string): number;
|
|
85
|
+
declare function isPos$1(val: unknown, msg?: string): number;
|
|
86
|
+
declare function isNeg$1(val: unknown, msg?: string): number;
|
|
87
|
+
declare function isNonPos$1(val: unknown, msg?: string): number;
|
|
88
|
+
declare function isNonNeg$1(val: unknown, msg?: string): number;
|
|
89
|
+
declare function isZero$1(val: unknown, msg?: string): number;
|
|
90
|
+
declare function isPosZero$1(val: unknown, msg?: string): number;
|
|
91
|
+
declare function isNegZero$1(val: unknown, msg?: string): number;
|
|
92
|
+
declare function isOdd$1(val: unknown, msg?: string): number;
|
|
93
|
+
declare function isEven$1(val: unknown, msg?: string): number;
|
|
94
|
+
declare function isMultipleOf$1(val: unknown, base: unknown, msg?: string): number;
|
|
95
|
+
declare function isPowerOfTwo$1(val: unknown, msg?: string): number;
|
|
96
|
+
declare function isIncluded$1<T>(val: unknown, arr: ReadonlyArray<T> | Set<T>, msg?: string): T;
|
|
97
|
+
declare function isIndex$1<T>(index: unknown, msg?: string): number;
|
|
98
|
+
declare function isIndex$1<T>(index: unknown, arr: ReadonlyArray<T>, msg?: string): number;
|
|
99
|
+
declare function doesThrow$1(throwTestFn: () => void, msg?: string): true;
|
|
100
|
+
declare function doesNotThrow$1(throwTestFn: () => void, msg?: string): true;
|
|
170
101
|
|
|
171
102
|
type index$7_ErrorConstructor = ErrorConstructor;
|
|
172
|
-
declare const index$7_array_elem: typeof array_elem;
|
|
173
|
-
declare const index$7_array_id: typeof array_id;
|
|
174
103
|
declare const index$7_assert: typeof assert;
|
|
175
|
-
declare const index$7_assertEnum: typeof assertEnum;
|
|
176
|
-
declare const index$7_eq: typeof eq;
|
|
177
|
-
declare const index$7_even: typeof even;
|
|
178
104
|
declare const index$7_fail: typeof fail;
|
|
179
|
-
declare const index$7_finite: typeof finite;
|
|
180
|
-
declare const index$7_in_group: typeof in_group;
|
|
181
|
-
declare const index$7_int: typeof int;
|
|
182
|
-
declare const index$7_int_between: typeof int_between;
|
|
183
|
-
declare const index$7_int_between_exclusive: typeof int_between_exclusive;
|
|
184
|
-
declare const index$7_int_eq: typeof int_eq;
|
|
185
|
-
declare const index$7_int_gt: typeof int_gt;
|
|
186
|
-
declare const index$7_int_gte: typeof int_gte;
|
|
187
|
-
declare const index$7_int_lt: typeof int_lt;
|
|
188
|
-
declare const index$7_int_lte: typeof int_lte;
|
|
189
|
-
declare const index$7_interrupt: typeof interrupt;
|
|
190
|
-
declare const index$7_odd: typeof odd;
|
|
191
105
|
declare const index$7_require: typeof require;
|
|
192
106
|
declare const index$7_requireDefined: typeof requireDefined;
|
|
107
|
+
declare const index$7_requireElement: typeof requireElement;
|
|
193
108
|
declare const index$7_setErrorClass: typeof setErrorClass;
|
|
194
109
|
declare namespace index$7 {
|
|
195
|
-
export { type index$7_ErrorConstructor as ErrorConstructor, index$
|
|
110
|
+
export { type index$7_ErrorConstructor as ErrorConstructor, index$7_assert as assert, doesNotThrow$1 as doesNotThrow, doesThrow$1 as doesThrow, index$7_fail as fail, isArray$1 as isArray, isArrayOrUndefined$1 as isArrayOrUndefined, isBigInt$1 as isBigInt, isBoolean$1 as isBoolean, isBooleanOrUndefined$1 as isBooleanOrUndefined, isDeepEqual$1 as isDeepEqual, isDefined$1 as isDefined, isEmptyArray$1 as isEmptyArray, isEmptyArrayOrUndefined$1 as isEmptyArrayOrUndefined, isEmptyObject$1 as isEmptyObject, isEmptyString$1 as isEmptyString, isEmptyStringOrUndefined$1 as isEmptyStringOrUndefined, isEnumValue$1 as isEnumValue, isEnumValueOrUndefined$1 as isEnumValueOrUndefined, isEven$1 as isEven, isFalse$1 as isFalse, isFalseOrUndefined$1 as isFalseOrUndefined, isFinite$1 as isFinite, isFloat$1 as isFloat, isFunction$1 as isFunction, isFunctionOrUndefined$1 as isFunctionOrUndefined, isIncluded$1 as isIncluded, isIndex$1 as isIndex, isInfinity$1 as isInfinity, isInteger$1 as isInteger, isIntegerBetween$1 as isIntegerBetween, isIntegerBetweenExclusive$1 as isIntegerBetweenExclusive, isIntegerEq$1 as isIntegerEq, isIntegerGt$1 as isIntegerGt, isIntegerGte$1 as isIntegerGte, isIntegerLt$1 as isIntegerLt, isIntegerLte$1 as isIntegerLte, isIntegerOrUndefined$1 as isIntegerOrUndefined, isMultipleOf$1 as isMultipleOf, isNaNValue$1 as isNaNValue, isNeg$1 as isNeg, isNegInfinity$1 as isNegInfinity, isNegZero$1 as isNegZero, isNonEmptyArray$1 as isNonEmptyArray, isNonEmptyArrayOrUndefined$1 as isNonEmptyArrayOrUndefined, isNonEmptyString$1 as isNonEmptyString, isNonEmptyStringOrUndefined$1 as isNonEmptyStringOrUndefined, isNonNeg$1 as isNonNeg, isNonNull$1 as isNonNull, isNonPos$1 as isNonPos, isNull$1 as isNull, isNullish$1 as isNullish, isNumber$1 as isNumber, isNumberBetween$1 as isNumberBetween, isNumberBetweenExclusive$1 as isNumberBetweenExclusive, isNumberOrUndefined$1 as isNumberOrUndefined, isNumericString$1 as isNumericString, isObject$1 as isObject, isObjectOrUndefined$1 as isObjectOrUndefined, isOdd$1 as isOdd, isPlainObject$1 as isPlainObject, isPos$1 as isPos, isPosInfinity$1 as isPosInfinity, isPosZero$1 as isPosZero, isPowerOfTwo$1 as isPowerOfTwo, isSafeInteger$1 as isSafeInteger, isStrictEqual$1 as isStrictEqual, isString$1 as isString, isStringOrUndefined$1 as isStringOrUndefined, isTrue$1 as isTrue, isTrueOrUndefined$1 as isTrueOrUndefined, isTypedObject$1 as isTypedObject, isUndefined$1 as isUndefined, isZero$1 as isZero, index$7_require as require, index$7_requireDefined as requireDefined, index$7_requireElement as requireElement, index$7_setErrorClass as setErrorClass };
|
|
196
111
|
}
|
|
197
112
|
|
|
198
113
|
/**
|
|
@@ -314,131 +229,162 @@ declare namespace device {
|
|
|
314
229
|
export { device_DPI as DPI, device_FontSize as FontSize, device_HostAddress as HostAddress, device_IsMobileDevice as IsMobileDevice, device_IsTouchDevice as IsTouchDevice, device_PxPerMm as PxPerMm, device_ScrollbarWidth as ScrollbarWidth, device_mmToPx as mmToPx, device_pxToMm as pxToMm, device_toPx as toPx };
|
|
315
230
|
}
|
|
316
231
|
|
|
317
|
-
declare function isEqual(value1: unknown, value2: unknown): boolean;
|
|
318
|
-
declare function isDeepEqual(value1: unknown, value2: unknown): boolean;
|
|
319
|
-
declare function isUndefined(value: unknown): value is undefined;
|
|
320
|
-
declare function isNull(value: unknown): value is null;
|
|
321
|
-
declare function isNullish(value: unknown): value is null | undefined;
|
|
322
|
-
declare function isObject(value: unknown): value is Record<string, unknown>;
|
|
323
|
-
declare function isObjectOrUndefined(value: unknown): value is Record<string, unknown> | undefined;
|
|
324
232
|
type HasProps<T extends object> = T extends Record<string, unknown> ? T : never;
|
|
325
|
-
declare function
|
|
326
|
-
declare function
|
|
327
|
-
declare function
|
|
328
|
-
declare function
|
|
329
|
-
declare function
|
|
330
|
-
declare function
|
|
331
|
-
declare function
|
|
332
|
-
declare function
|
|
333
|
-
declare function
|
|
334
|
-
declare function
|
|
335
|
-
declare function
|
|
336
|
-
declare function
|
|
337
|
-
declare function
|
|
338
|
-
declare function
|
|
339
|
-
declare function
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
declare function
|
|
343
|
-
declare function
|
|
344
|
-
declare function
|
|
345
|
-
declare function
|
|
346
|
-
declare function
|
|
347
|
-
declare function
|
|
348
|
-
declare function
|
|
349
|
-
declare function
|
|
350
|
-
declare function
|
|
351
|
-
declare function
|
|
352
|
-
declare function
|
|
353
|
-
declare function
|
|
354
|
-
declare function
|
|
355
|
-
declare function
|
|
356
|
-
declare function
|
|
357
|
-
declare function
|
|
358
|
-
declare function
|
|
359
|
-
declare function
|
|
360
|
-
declare function
|
|
361
|
-
declare function
|
|
362
|
-
declare function
|
|
363
|
-
declare function
|
|
364
|
-
declare function
|
|
365
|
-
declare function
|
|
366
|
-
declare function
|
|
367
|
-
declare function
|
|
368
|
-
declare function
|
|
369
|
-
declare function
|
|
370
|
-
declare function
|
|
371
|
-
declare function
|
|
233
|
+
declare function isStrictEqual(val1: unknown, val2: unknown): boolean;
|
|
234
|
+
declare function isDeepEqual(val1: unknown, val2: unknown): boolean;
|
|
235
|
+
declare function isUndefined(val: unknown): val is undefined;
|
|
236
|
+
declare function isNull(val: unknown): val is null;
|
|
237
|
+
declare function isNullish(val: unknown): val is null | undefined;
|
|
238
|
+
declare function isDefined<T>(val: T): val is Exclude<T, undefined>;
|
|
239
|
+
declare function isNonNull<T>(val: T): val is Exclude<T, null>;
|
|
240
|
+
declare function isObject(val: unknown): val is Record<string, unknown>;
|
|
241
|
+
declare function isEmptyObject(val: unknown): val is Record<string, never>;
|
|
242
|
+
declare function isObjectOrUndefined(val: unknown): val is Record<string, unknown> | undefined;
|
|
243
|
+
declare function isPlainObject(val: unknown): val is Record<string, unknown>;
|
|
244
|
+
declare function isTypedObject<T extends object>(val: unknown, keys: (keyof T)[]): val is HasProps<T>;
|
|
245
|
+
declare function isArray<T>(arr: T[] | unknown): arr is T[];
|
|
246
|
+
declare function isArrayOrUndefined(arr: unknown): arr is unknown[] | undefined;
|
|
247
|
+
declare function isEmptyArray<T>(arr: T[] | unknown): arr is T[] & {
|
|
248
|
+
length: 0;
|
|
249
|
+
};
|
|
250
|
+
declare function isNonEmptyArray<T>(arr: T[] | unknown): arr is T[];
|
|
251
|
+
declare function isEmptyArrayOrUndefined<T>(arr: T[] | unknown): arr is T[] | undefined;
|
|
252
|
+
declare function isNonEmptyArrayOrUndefined<T>(arr: T[] | unknown): arr is T[] | undefined;
|
|
253
|
+
declare function isString(val: unknown): val is string;
|
|
254
|
+
declare function isEmptyString(val: unknown): val is "";
|
|
255
|
+
declare function isNonEmptyString(val: unknown): val is string;
|
|
256
|
+
declare function isStringOrUndefined(val: unknown): val is string | undefined;
|
|
257
|
+
declare function isEmptyStringOrUndefined(val: unknown): val is "" | undefined;
|
|
258
|
+
declare function isNonEmptyStringOrUndefined(val: unknown): val is string | undefined;
|
|
259
|
+
declare function isBoolean(val: unknown): val is boolean;
|
|
260
|
+
declare function isBooleanOrUndefined(val: unknown): val is boolean | undefined;
|
|
261
|
+
declare function isTrue(val: unknown): val is true;
|
|
262
|
+
declare function isTrueOrUndefined(val: unknown): val is true | undefined;
|
|
263
|
+
declare function isFalse(val: unknown): val is false;
|
|
264
|
+
declare function isFalseOrUndefined(val: unknown): val is false | undefined;
|
|
265
|
+
declare function isFunction<T extends (...args: any[]) => any>(val: unknown): val is T;
|
|
266
|
+
declare function isFunctionOrUndefined(val: unknown): val is ((...args: any[]) => any) | undefined;
|
|
267
|
+
declare function isEnumValue<E extends EnumObject>(val: unknown, enumObj: E): val is E[keyof E];
|
|
268
|
+
declare function isEnumValueOrUndefined<E extends EnumObject>(val: unknown, enumObj: E): val is E[keyof E] | undefined;
|
|
269
|
+
declare function isNumericString(val: unknown): val is string;
|
|
270
|
+
declare function isBigInt(val: unknown): val is BigInt;
|
|
271
|
+
declare function isNumber(val: unknown): val is number;
|
|
272
|
+
declare function isNumberOrUndefined(val: unknown): val is number | undefined;
|
|
273
|
+
declare function isFinite(val: unknown): val is number;
|
|
274
|
+
declare function isFloat(val: unknown): val is number;
|
|
275
|
+
declare function isInteger(val: unknown): val is number;
|
|
276
|
+
declare function isSafeInteger(val: unknown): val is number;
|
|
277
|
+
declare function isIntegerOrUndefined(val: unknown): val is number | undefined;
|
|
278
|
+
declare function isIntegerEq(val: unknown, ref: unknown): val is number;
|
|
279
|
+
declare function isIntegerGt(val: unknown, ref: unknown): val is number;
|
|
280
|
+
declare function isIntegerGte(val: unknown, ref: unknown): val is number;
|
|
281
|
+
declare function isIntegerLt(val: unknown, ref: unknown): val is number;
|
|
282
|
+
declare function isIntegerLte(val: unknown, ref: unknown): val is number;
|
|
283
|
+
declare function isIntegerBetween(val: unknown, min: unknown, max: unknown): val is number;
|
|
284
|
+
declare function isIntegerBetweenExclusive(val: unknown, min: unknown, max: unknown): val is number;
|
|
285
|
+
declare function isNumberBetween(val: unknown, min: unknown, max: unknown): val is number;
|
|
286
|
+
declare function isNumberBetweenExclusive(val: unknown, min: unknown, max: unknown): val is number;
|
|
287
|
+
declare function isNaNValue(val: unknown): val is number;
|
|
288
|
+
declare function isInfinity(val: unknown): val is number;
|
|
289
|
+
declare function isPosInfinity(val: unknown): val is number;
|
|
290
|
+
declare function isNegInfinity(val: unknown): val is number;
|
|
291
|
+
declare function isPos(val: unknown): val is number;
|
|
292
|
+
declare function isNeg(val: unknown): val is number;
|
|
293
|
+
declare function isNonPos(val: unknown): val is number;
|
|
294
|
+
declare function isNonNeg(val: unknown): val is number;
|
|
295
|
+
declare function isZero(val: unknown): val is number;
|
|
296
|
+
declare function isPosZero(val: unknown): val is number;
|
|
297
|
+
declare function isNegZero(val: unknown): val is number;
|
|
298
|
+
declare function isOdd(val: unknown): val is number;
|
|
299
|
+
declare function isEven(val: unknown): val is number;
|
|
300
|
+
declare function isMultipleOf(val: unknown, base: unknown): val is number;
|
|
301
|
+
declare function isPowerOfTwo(val: unknown): val is number;
|
|
302
|
+
declare function isIncluded<T>(val: unknown, container: ReadonlyArray<T> | Set<T>): val is T;
|
|
303
|
+
declare function isIndex<T>(index: unknown, array?: ReadonlyArray<T>): index is number;
|
|
304
|
+
declare function doesThrow(throwTestFn: () => void): boolean;
|
|
305
|
+
declare function doesNotThrow(throwTestFn: () => void): boolean;
|
|
372
306
|
declare function tryOr<TRY_RVAL, OR_RVAL>(tryFn: () => TRY_RVAL, orVal: OR_RVAL | (() => OR_RVAL)): TRY_RVAL | OR_RVAL;
|
|
373
307
|
|
|
374
|
-
type
|
|
375
|
-
declare const
|
|
376
|
-
declare const
|
|
377
|
-
declare const
|
|
378
|
-
declare const
|
|
379
|
-
declare const
|
|
380
|
-
declare const
|
|
381
|
-
declare const
|
|
382
|
-
declare const
|
|
383
|
-
declare const
|
|
384
|
-
declare const
|
|
385
|
-
declare const
|
|
386
|
-
declare const
|
|
387
|
-
declare const
|
|
388
|
-
declare const
|
|
389
|
-
declare const
|
|
390
|
-
declare const
|
|
391
|
-
declare const
|
|
392
|
-
declare const
|
|
393
|
-
declare const
|
|
394
|
-
declare const
|
|
395
|
-
declare const
|
|
396
|
-
declare const
|
|
397
|
-
declare const
|
|
398
|
-
declare const
|
|
399
|
-
declare const
|
|
400
|
-
declare const
|
|
401
|
-
declare const
|
|
402
|
-
declare const
|
|
403
|
-
declare const
|
|
404
|
-
declare const
|
|
405
|
-
declare const
|
|
406
|
-
declare const
|
|
407
|
-
declare const
|
|
408
|
-
declare const
|
|
409
|
-
declare const
|
|
410
|
-
declare const
|
|
411
|
-
declare const
|
|
412
|
-
declare const
|
|
413
|
-
declare const
|
|
414
|
-
declare const
|
|
415
|
-
declare const
|
|
416
|
-
declare const
|
|
417
|
-
declare const
|
|
418
|
-
declare const
|
|
419
|
-
declare const
|
|
420
|
-
declare const
|
|
421
|
-
declare const
|
|
422
|
-
declare const
|
|
423
|
-
declare const
|
|
424
|
-
declare const
|
|
425
|
-
declare const
|
|
426
|
-
declare const
|
|
427
|
-
declare const
|
|
428
|
-
declare const
|
|
429
|
-
declare const
|
|
430
|
-
declare
|
|
431
|
-
|
|
308
|
+
type index$6_HasProps<T extends object> = HasProps<T>;
|
|
309
|
+
declare const index$6_doesNotThrow: typeof doesNotThrow;
|
|
310
|
+
declare const index$6_doesThrow: typeof doesThrow;
|
|
311
|
+
declare const index$6_isArray: typeof isArray;
|
|
312
|
+
declare const index$6_isArrayOrUndefined: typeof isArrayOrUndefined;
|
|
313
|
+
declare const index$6_isBigInt: typeof isBigInt;
|
|
314
|
+
declare const index$6_isBoolean: typeof isBoolean;
|
|
315
|
+
declare const index$6_isBooleanOrUndefined: typeof isBooleanOrUndefined;
|
|
316
|
+
declare const index$6_isDeepEqual: typeof isDeepEqual;
|
|
317
|
+
declare const index$6_isDefined: typeof isDefined;
|
|
318
|
+
declare const index$6_isEmptyArray: typeof isEmptyArray;
|
|
319
|
+
declare const index$6_isEmptyArrayOrUndefined: typeof isEmptyArrayOrUndefined;
|
|
320
|
+
declare const index$6_isEmptyObject: typeof isEmptyObject;
|
|
321
|
+
declare const index$6_isEmptyString: typeof isEmptyString;
|
|
322
|
+
declare const index$6_isEmptyStringOrUndefined: typeof isEmptyStringOrUndefined;
|
|
323
|
+
declare const index$6_isEnumValue: typeof isEnumValue;
|
|
324
|
+
declare const index$6_isEnumValueOrUndefined: typeof isEnumValueOrUndefined;
|
|
325
|
+
declare const index$6_isEven: typeof isEven;
|
|
326
|
+
declare const index$6_isFalse: typeof isFalse;
|
|
327
|
+
declare const index$6_isFalseOrUndefined: typeof isFalseOrUndefined;
|
|
328
|
+
declare const index$6_isFinite: typeof isFinite;
|
|
329
|
+
declare const index$6_isFloat: typeof isFloat;
|
|
330
|
+
declare const index$6_isFunction: typeof isFunction;
|
|
331
|
+
declare const index$6_isFunctionOrUndefined: typeof isFunctionOrUndefined;
|
|
332
|
+
declare const index$6_isIncluded: typeof isIncluded;
|
|
333
|
+
declare const index$6_isIndex: typeof isIndex;
|
|
334
|
+
declare const index$6_isInfinity: typeof isInfinity;
|
|
335
|
+
declare const index$6_isInteger: typeof isInteger;
|
|
336
|
+
declare const index$6_isIntegerBetween: typeof isIntegerBetween;
|
|
337
|
+
declare const index$6_isIntegerBetweenExclusive: typeof isIntegerBetweenExclusive;
|
|
338
|
+
declare const index$6_isIntegerEq: typeof isIntegerEq;
|
|
339
|
+
declare const index$6_isIntegerGt: typeof isIntegerGt;
|
|
340
|
+
declare const index$6_isIntegerGte: typeof isIntegerGte;
|
|
341
|
+
declare const index$6_isIntegerLt: typeof isIntegerLt;
|
|
342
|
+
declare const index$6_isIntegerLte: typeof isIntegerLte;
|
|
343
|
+
declare const index$6_isIntegerOrUndefined: typeof isIntegerOrUndefined;
|
|
344
|
+
declare const index$6_isMultipleOf: typeof isMultipleOf;
|
|
345
|
+
declare const index$6_isNaNValue: typeof isNaNValue;
|
|
346
|
+
declare const index$6_isNeg: typeof isNeg;
|
|
347
|
+
declare const index$6_isNegInfinity: typeof isNegInfinity;
|
|
348
|
+
declare const index$6_isNegZero: typeof isNegZero;
|
|
349
|
+
declare const index$6_isNonEmptyArray: typeof isNonEmptyArray;
|
|
350
|
+
declare const index$6_isNonEmptyArrayOrUndefined: typeof isNonEmptyArrayOrUndefined;
|
|
351
|
+
declare const index$6_isNonEmptyString: typeof isNonEmptyString;
|
|
352
|
+
declare const index$6_isNonEmptyStringOrUndefined: typeof isNonEmptyStringOrUndefined;
|
|
353
|
+
declare const index$6_isNonNeg: typeof isNonNeg;
|
|
354
|
+
declare const index$6_isNonNull: typeof isNonNull;
|
|
355
|
+
declare const index$6_isNonPos: typeof isNonPos;
|
|
356
|
+
declare const index$6_isNull: typeof isNull;
|
|
357
|
+
declare const index$6_isNullish: typeof isNullish;
|
|
358
|
+
declare const index$6_isNumber: typeof isNumber;
|
|
359
|
+
declare const index$6_isNumberBetween: typeof isNumberBetween;
|
|
360
|
+
declare const index$6_isNumberBetweenExclusive: typeof isNumberBetweenExclusive;
|
|
361
|
+
declare const index$6_isNumberOrUndefined: typeof isNumberOrUndefined;
|
|
362
|
+
declare const index$6_isNumericString: typeof isNumericString;
|
|
363
|
+
declare const index$6_isObject: typeof isObject;
|
|
364
|
+
declare const index$6_isObjectOrUndefined: typeof isObjectOrUndefined;
|
|
365
|
+
declare const index$6_isOdd: typeof isOdd;
|
|
366
|
+
declare const index$6_isPlainObject: typeof isPlainObject;
|
|
367
|
+
declare const index$6_isPos: typeof isPos;
|
|
368
|
+
declare const index$6_isPosInfinity: typeof isPosInfinity;
|
|
369
|
+
declare const index$6_isPosZero: typeof isPosZero;
|
|
370
|
+
declare const index$6_isPowerOfTwo: typeof isPowerOfTwo;
|
|
371
|
+
declare const index$6_isSafeInteger: typeof isSafeInteger;
|
|
372
|
+
declare const index$6_isStrictEqual: typeof isStrictEqual;
|
|
373
|
+
declare const index$6_isString: typeof isString;
|
|
374
|
+
declare const index$6_isStringOrUndefined: typeof isStringOrUndefined;
|
|
375
|
+
declare const index$6_isTrue: typeof isTrue;
|
|
376
|
+
declare const index$6_isTrueOrUndefined: typeof isTrueOrUndefined;
|
|
377
|
+
declare const index$6_isTypedObject: typeof isTypedObject;
|
|
378
|
+
declare const index$6_isUndefined: typeof isUndefined;
|
|
379
|
+
declare const index$6_isZero: typeof isZero;
|
|
380
|
+
declare const index$6_tryOr: typeof tryOr;
|
|
381
|
+
declare namespace index$6 {
|
|
382
|
+
export { type index$6_HasProps as HasProps, index$6_doesNotThrow as doesNotThrow, index$6_doesThrow as doesThrow, index$6_isArray as isArray, index$6_isArrayOrUndefined as isArrayOrUndefined, index$6_isBigInt as isBigInt, index$6_isBoolean as isBoolean, index$6_isBooleanOrUndefined as isBooleanOrUndefined, index$6_isDeepEqual as isDeepEqual, index$6_isDefined as isDefined, index$6_isEmptyArray as isEmptyArray, index$6_isEmptyArrayOrUndefined as isEmptyArrayOrUndefined, index$6_isEmptyObject as isEmptyObject, index$6_isEmptyString as isEmptyString, index$6_isEmptyStringOrUndefined as isEmptyStringOrUndefined, index$6_isEnumValue as isEnumValue, index$6_isEnumValueOrUndefined as isEnumValueOrUndefined, index$6_isEven as isEven, index$6_isFalse as isFalse, index$6_isFalseOrUndefined as isFalseOrUndefined, index$6_isFinite as isFinite, index$6_isFloat as isFloat, index$6_isFunction as isFunction, index$6_isFunctionOrUndefined as isFunctionOrUndefined, index$6_isIncluded as isIncluded, index$6_isIndex as isIndex, index$6_isInfinity as isInfinity, index$6_isInteger as isInteger, index$6_isIntegerBetween as isIntegerBetween, index$6_isIntegerBetweenExclusive as isIntegerBetweenExclusive, index$6_isIntegerEq as isIntegerEq, index$6_isIntegerGt as isIntegerGt, index$6_isIntegerGte as isIntegerGte, index$6_isIntegerLt as isIntegerLt, index$6_isIntegerLte as isIntegerLte, index$6_isIntegerOrUndefined as isIntegerOrUndefined, index$6_isMultipleOf as isMultipleOf, index$6_isNaNValue as isNaNValue, index$6_isNeg as isNeg, index$6_isNegInfinity as isNegInfinity, index$6_isNegZero as isNegZero, index$6_isNonEmptyArray as isNonEmptyArray, index$6_isNonEmptyArrayOrUndefined as isNonEmptyArrayOrUndefined, index$6_isNonEmptyString as isNonEmptyString, index$6_isNonEmptyStringOrUndefined as isNonEmptyStringOrUndefined, index$6_isNonNeg as isNonNeg, index$6_isNonNull as isNonNull, index$6_isNonPos as isNonPos, index$6_isNull as isNull, index$6_isNullish as isNullish, index$6_isNumber as isNumber, index$6_isNumberBetween as isNumberBetween, index$6_isNumberBetweenExclusive as isNumberBetweenExclusive, index$6_isNumberOrUndefined as isNumberOrUndefined, index$6_isNumericString as isNumericString, index$6_isObject as isObject, index$6_isObjectOrUndefined as isObjectOrUndefined, index$6_isOdd as isOdd, index$6_isPlainObject as isPlainObject, index$6_isPos as isPos, index$6_isPosInfinity as isPosInfinity, index$6_isPosZero as isPosZero, index$6_isPowerOfTwo as isPowerOfTwo, index$6_isSafeInteger as isSafeInteger, index$6_isStrictEqual as isStrictEqual, index$6_isString as isString, index$6_isStringOrUndefined as isStringOrUndefined, index$6_isTrue as isTrue, index$6_isTrueOrUndefined as isTrueOrUndefined, index$6_isTypedObject as isTypedObject, index$6_isUndefined as isUndefined, index$6_isZero as isZero, index$6_tryOr as tryOr };
|
|
432
383
|
}
|
|
433
384
|
|
|
434
|
-
declare function toArray<T>(a: T | T[]):
|
|
435
|
-
declare function duplicate<T>(a: T
|
|
436
|
-
declare function removeDuplicates<T>(arr: T
|
|
437
|
-
/**
|
|
438
|
-
* @deprecated - Use {@link removeDuplicates} with compareFn instead. Will be removed in v2.0.0.
|
|
439
|
-
* @private
|
|
440
|
-
*/
|
|
441
|
-
declare function removeDuplicatesCmp<T>(arr: ReadonlyArray<T>, compareFn: (t1: T, t2: T) => boolean): T[];
|
|
385
|
+
declare function toArray<T>(a: T | T[]): T[];
|
|
386
|
+
declare function duplicate<T>(a: ReadonlyArray<T> | undefined): T[];
|
|
387
|
+
declare function removeDuplicates<T>(arr: ReadonlyArray<T>, compareFn?: (a: T, b: T) => boolean): Array<T>;
|
|
442
388
|
declare function fillArray<T>(fillValue: T, fillCount: number): T[];
|
|
443
389
|
declare function mapSequenceArray<T>(len: number, fn: (i: number) => T): T[];
|
|
444
390
|
declare function getSequenceArray(len: number): number[];
|
|
@@ -447,20 +393,19 @@ declare function getRangeArray(start: number, end: number): number[];
|
|
|
447
393
|
declare function arrayContains<T extends unknown>(arg: T[], item: T): boolean;
|
|
448
394
|
declare function chunckArray<A>(arr: ReadonlyArray<A>, chunckSize: number): A[][];
|
|
449
395
|
|
|
450
|
-
declare const index$
|
|
451
|
-
declare const index$
|
|
452
|
-
declare const index$
|
|
453
|
-
declare const index$
|
|
454
|
-
declare const index$
|
|
455
|
-
declare const index$
|
|
456
|
-
declare const index$
|
|
457
|
-
declare const index$
|
|
458
|
-
declare const index$
|
|
459
|
-
declare const index$
|
|
460
|
-
declare const index$
|
|
461
|
-
declare
|
|
462
|
-
|
|
463
|
-
export { index$6_arrayContains as arrayContains, index$6_chunckArray as chunckArray, index$6_duplicate as duplicate, index$6_fillArray as fillArray, index$6_getRangeArray as getRangeArray, index$6_getSequenceArray as getSequenceArray, index$6_isArray as isArray, index$6_mapRangeArray as mapRangeArray, index$6_mapSequenceArray as mapSequenceArray, index$6_removeDuplicates as removeDuplicates, index$6_removeDuplicatesCmp as removeDuplicatesCmp, index$6_toArray as toArray };
|
|
396
|
+
declare const index$5_arrayContains: typeof arrayContains;
|
|
397
|
+
declare const index$5_chunckArray: typeof chunckArray;
|
|
398
|
+
declare const index$5_duplicate: typeof duplicate;
|
|
399
|
+
declare const index$5_fillArray: typeof fillArray;
|
|
400
|
+
declare const index$5_getRangeArray: typeof getRangeArray;
|
|
401
|
+
declare const index$5_getSequenceArray: typeof getSequenceArray;
|
|
402
|
+
declare const index$5_isArray: typeof isArray;
|
|
403
|
+
declare const index$5_mapRangeArray: typeof mapRangeArray;
|
|
404
|
+
declare const index$5_mapSequenceArray: typeof mapSequenceArray;
|
|
405
|
+
declare const index$5_removeDuplicates: typeof removeDuplicates;
|
|
406
|
+
declare const index$5_toArray: typeof toArray;
|
|
407
|
+
declare namespace index$5 {
|
|
408
|
+
export { index$5_arrayContains as arrayContains, index$5_chunckArray as chunckArray, index$5_duplicate as duplicate, index$5_fillArray as fillArray, index$5_getRangeArray as getRangeArray, index$5_getSequenceArray as getSequenceArray, index$5_isArray as isArray, index$5_mapRangeArray as mapRangeArray, index$5_mapSequenceArray as mapSequenceArray, index$5_removeDuplicates as removeDuplicates, index$5_toArray as toArray };
|
|
464
409
|
}
|
|
465
410
|
|
|
466
411
|
interface CSSProperties {
|
|
@@ -509,35 +454,28 @@ declare function getDimension(style?: CSSProperties): {
|
|
|
509
454
|
declare function styleLayoutChanged(style1?: CSSProperties, style2?: CSSProperties): boolean;
|
|
510
455
|
declare function getCanvasTextWidth(text: string, font: string): number;
|
|
511
456
|
|
|
512
|
-
type index$
|
|
513
|
-
declare const index$
|
|
514
|
-
declare const index$
|
|
515
|
-
declare const index$
|
|
516
|
-
declare const index$
|
|
517
|
-
declare const index$
|
|
518
|
-
declare const index$
|
|
519
|
-
declare const index$
|
|
520
|
-
declare const index$
|
|
521
|
-
declare const index$
|
|
522
|
-
declare const index$
|
|
523
|
-
declare const index$
|
|
524
|
-
declare const index$
|
|
525
|
-
declare const index$
|
|
526
|
-
declare const index$
|
|
527
|
-
declare const index$
|
|
528
|
-
declare const index$
|
|
529
|
-
declare const index$
|
|
530
|
-
declare const index$
|
|
531
|
-
declare const index$
|
|
532
|
-
declare namespace index$5 {
|
|
533
|
-
export { type index$5_CSSProperties as CSSProperties, index$5_addClass as addClass, index$5_appendTo as appendTo, index$5_getButton as getButton, index$5_getCanvas as getCanvas, index$5_getCanvasTextWidth as getCanvasTextWidth, index$5_getDimension as getDimension, index$5_getHeight as getHeight, index$5_getOffset as getOffset, index$5_getPadding as getPadding, index$5_getWidth as getWidth, index$5_hasClass as hasClass, index$5_removeClass as removeClass, index$5_removeFromParent as removeFromParent, index$5_setHeight as setHeight, index$5_setOffset as setOffset, index$5_setRect as setRect, index$5_setVisibility as setVisibility, index$5_setWidth as setWidth, index$5_styleLayoutChanged as styleLayoutChanged };
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
declare function getMapKeys<K, V>(map: Map<K, V>): K[];
|
|
537
|
-
|
|
538
|
-
declare const index$4_getMapKeys: typeof getMapKeys;
|
|
457
|
+
type index$4_CSSProperties = CSSProperties;
|
|
458
|
+
declare const index$4_addClass: typeof addClass;
|
|
459
|
+
declare const index$4_appendTo: typeof appendTo;
|
|
460
|
+
declare const index$4_getButton: typeof getButton;
|
|
461
|
+
declare const index$4_getCanvas: typeof getCanvas;
|
|
462
|
+
declare const index$4_getCanvasTextWidth: typeof getCanvasTextWidth;
|
|
463
|
+
declare const index$4_getDimension: typeof getDimension;
|
|
464
|
+
declare const index$4_getHeight: typeof getHeight;
|
|
465
|
+
declare const index$4_getOffset: typeof getOffset;
|
|
466
|
+
declare const index$4_getPadding: typeof getPadding;
|
|
467
|
+
declare const index$4_getWidth: typeof getWidth;
|
|
468
|
+
declare const index$4_hasClass: typeof hasClass;
|
|
469
|
+
declare const index$4_removeClass: typeof removeClass;
|
|
470
|
+
declare const index$4_removeFromParent: typeof removeFromParent;
|
|
471
|
+
declare const index$4_setHeight: typeof setHeight;
|
|
472
|
+
declare const index$4_setOffset: typeof setOffset;
|
|
473
|
+
declare const index$4_setRect: typeof setRect;
|
|
474
|
+
declare const index$4_setVisibility: typeof setVisibility;
|
|
475
|
+
declare const index$4_setWidth: typeof setWidth;
|
|
476
|
+
declare const index$4_styleLayoutChanged: typeof styleLayoutChanged;
|
|
539
477
|
declare namespace index$4 {
|
|
540
|
-
export { index$
|
|
478
|
+
export { type index$4_CSSProperties as CSSProperties, index$4_addClass as addClass, index$4_appendTo as appendTo, index$4_getButton as getButton, index$4_getCanvas as getCanvas, index$4_getCanvasTextWidth as getCanvasTextWidth, index$4_getDimension as getDimension, index$4_getHeight as getHeight, index$4_getOffset as getOffset, index$4_getPadding as getPadding, index$4_getWidth as getWidth, index$4_hasClass as hasClass, index$4_removeClass as removeClass, index$4_removeFromParent as removeFromParent, index$4_setHeight as setHeight, index$4_setOffset as setOffset, index$4_setRect as setRect, index$4_setVisibility as setVisibility, index$4_setWidth as setWidth, index$4_styleLayoutChanged as styleLayoutChanged };
|
|
541
479
|
}
|
|
542
480
|
|
|
543
481
|
declare function linearToDecibels(linearVolume: number): number;
|
|
@@ -580,20 +518,24 @@ declare namespace index$3 {
|
|
|
580
518
|
}
|
|
581
519
|
|
|
582
520
|
/**
|
|
583
|
-
*
|
|
584
|
-
*
|
|
585
|
-
*
|
|
586
|
-
*
|
|
587
|
-
*
|
|
521
|
+
* ```ts
|
|
522
|
+
* // Gives type Record<string, unknown>
|
|
523
|
+
* hasProperties(obj, ["a", "b"]);
|
|
524
|
+
*
|
|
525
|
+
* // Gives type Record<"a" | "b", unknown>
|
|
526
|
+
* hasProperties(obj, ["a", "b"] as const);
|
|
527
|
+
* ```
|
|
588
528
|
*/
|
|
589
529
|
declare function hasProperties<T extends readonly string[]>(obj: unknown, props: T | string[]): obj is Record<T[number], unknown>;
|
|
590
530
|
declare function deepEqual<T>(a: T, b: T): boolean;
|
|
531
|
+
declare function getCtorName(obj: any): string;
|
|
591
532
|
|
|
592
533
|
declare const index$2_deepEqual: typeof deepEqual;
|
|
534
|
+
declare const index$2_getCtorName: typeof getCtorName;
|
|
593
535
|
declare const index$2_hasProperties: typeof hasProperties;
|
|
594
536
|
declare const index$2_isObject: typeof isObject;
|
|
595
537
|
declare namespace index$2 {
|
|
596
|
-
export { index$2_deepEqual as deepEqual, index$2_hasProperties as hasProperties, index$2_isObject as isObject };
|
|
538
|
+
export { index$2_deepEqual as deepEqual, index$2_getCtorName as getCtorName, index$2_hasProperties as hasProperties, index$2_isObject as isObject };
|
|
597
539
|
}
|
|
598
540
|
|
|
599
541
|
/**
|
|
@@ -664,15 +606,8 @@ declare namespace index$1 {
|
|
|
664
606
|
export { index$1_charCount as charCount, index$1_chunkString as chunkString, index$1_insertAt as insertAt, index$1_isString as isString, index$1_makeSentenceFromPascal as makeSentenceFromPascal, index$1_removeAt as removeAt, index$1_repeatString as repeatString, index$1_replaceAt as replaceAt, index$1_stringify as stringify, index$1_toCharArray as toCharArray };
|
|
665
607
|
}
|
|
666
608
|
|
|
667
|
-
/**
|
|
668
|
-
* @deprecated Use {@link Guard} instead. Will be removed in v2.0.0.
|
|
669
|
-
* @private
|
|
670
|
-
*/
|
|
671
|
-
declare const Is: typeof Guard;
|
|
672
|
-
|
|
673
|
-
declare const index_Is: typeof Is;
|
|
674
609
|
declare namespace index {
|
|
675
|
-
export { index$
|
|
610
|
+
export { index$5 as Arr, index$4 as Dom, index$8 as Enum, index$3 as Math, index$2 as Obj, index$1 as Str };
|
|
676
611
|
}
|
|
677
612
|
|
|
678
613
|
type EqualityFn<V> = (a: V, b: V) => boolean;
|
|
@@ -1073,6 +1008,7 @@ declare class AnchoredRect {
|
|
|
1073
1008
|
*/
|
|
1074
1009
|
getRect(): AnchoredRect;
|
|
1075
1010
|
toRect(): Rect;
|
|
1011
|
+
toString(): string;
|
|
1076
1012
|
}
|
|
1077
1013
|
|
|
1078
1014
|
/**
|
|
@@ -1477,7 +1413,7 @@ declare class MultiContainer<K extends any[], V> extends BaseContainer {
|
|
|
1477
1413
|
*
|
|
1478
1414
|
* ```ts
|
|
1479
1415
|
* // Usage:
|
|
1480
|
-
* const multi = asMulti(new
|
|
1416
|
+
* const multi = asMulti(new BiMap<string, string, number[]>());
|
|
1481
1417
|
* multi.add("a", "b", 5);
|
|
1482
1418
|
* multi.add("a", "b", 10);
|
|
1483
1419
|
* multi.add("a", "c", 15);
|
|
@@ -1537,540 +1473,6 @@ declare class LinkedList<V> extends BaseContainer implements Iterable<V> {
|
|
|
1537
1473
|
clone(): LinkedList<V>;
|
|
1538
1474
|
}
|
|
1539
1475
|
|
|
1540
|
-
|
|
1541
|
-
* @deprecated - Use {@link Vec} instead. Will be removed in v2.0.0.
|
|
1542
|
-
* @private
|
|
1543
|
-
*
|
|
1544
|
-
* Vec2 class.
|
|
1545
|
-
*/
|
|
1546
|
-
declare class Vec2 {
|
|
1547
|
-
readonly x: number;
|
|
1548
|
-
readonly y: number;
|
|
1549
|
-
constructor(x?: number, y?: number);
|
|
1550
|
-
length(): number;
|
|
1551
|
-
add(a: Vec2): Vec2;
|
|
1552
|
-
sub(a: Vec2): Vec2;
|
|
1553
|
-
mul(a: number): Vec2;
|
|
1554
|
-
div(a: number): Vec2;
|
|
1555
|
-
}
|
|
1556
|
-
|
|
1557
|
-
/**
|
|
1558
|
-
* @deprecated - Use {@link SignedIndexArray} or {@link IndexArray} instead, they have way more functions. Will be removed in v2.0.0.
|
|
1559
|
-
* @private
|
|
1560
|
-
*
|
|
1561
|
-
* A cache-like structure optimized for small-range integer keys, including negatives.
|
|
1562
|
-
*
|
|
1563
|
-
* Internally implemented using two sparse arrays: one for non-negative keys,
|
|
1564
|
-
* and one for negative keys (stored by index `-key - 1`).
|
|
1565
|
-
*
|
|
1566
|
-
* @remarks
|
|
1567
|
-
* - Fast access for small integer keys.
|
|
1568
|
-
* - Not suitable for large or sparse key ranges — memory usage may grow significantly.
|
|
1569
|
-
* - Supports `get`, `set`, `delete`, `has` and `clear`
|
|
1570
|
-
*
|
|
1571
|
-
* @example
|
|
1572
|
-
* ```ts
|
|
1573
|
-
* const cache = new SmallIntCache<string>();
|
|
1574
|
-
* cache.set(-2, 'A');
|
|
1575
|
-
* cache.set(3, 'B');
|
|
1576
|
-
* console.log(cache.get(-2)); // 'A'
|
|
1577
|
-
* ```
|
|
1578
|
-
*/
|
|
1579
|
-
declare class SmallIntCache<VALUE> {
|
|
1580
|
-
private pos;
|
|
1581
|
-
private neg;
|
|
1582
|
-
constructor();
|
|
1583
|
-
set(key: number, value: VALUE): void;
|
|
1584
|
-
get(key: number): VALUE | undefined;
|
|
1585
|
-
has(key: number): boolean;
|
|
1586
|
-
delete(key: number): void;
|
|
1587
|
-
clear(): void;
|
|
1588
|
-
}
|
|
1589
|
-
|
|
1590
|
-
/**
|
|
1591
|
-
* @deprecated - Use {@link UniMap} instead. Will be removed in v2.0.0.
|
|
1592
|
-
* @private
|
|
1593
|
-
* A Map implementation mapping a single key to a value.
|
|
1594
|
-
*/
|
|
1595
|
-
declare class Map1<KEY1, VALUE> extends BaseContainer implements KVComponent<[KEY1], VALUE> {
|
|
1596
|
-
private map1;
|
|
1597
|
-
constructor();
|
|
1598
|
-
constructor(map1: Map1<KEY1, VALUE>);
|
|
1599
|
-
constructor(entries: Iterable<[KEY1, VALUE]>);
|
|
1600
|
-
has(key1: KEY1): boolean;
|
|
1601
|
-
set(key1: KEY1, value: VALUE): VALUE;
|
|
1602
|
-
get(key1: KEY1): VALUE | undefined;
|
|
1603
|
-
getOrDefault(key1: KEY1, defaultValue: VALUE): VALUE;
|
|
1604
|
-
getOrCreate(key1: KEY1, value: VALUE): VALUE;
|
|
1605
|
-
getOrCreate(key1: KEY1, creator: () => VALUE): VALUE;
|
|
1606
|
-
delete(key1: KEY1): boolean;
|
|
1607
|
-
clear(): void;
|
|
1608
|
-
get size(): number;
|
|
1609
|
-
isEmpty(): boolean;
|
|
1610
|
-
forEach(callbackfn: (value: VALUE, key1: KEY1, map1: Map1<KEY1, VALUE>) => void, thisArg?: any): void;
|
|
1611
|
-
keys(): IterableIterator<KEY1>;
|
|
1612
|
-
values(): IterableIterator<VALUE>;
|
|
1613
|
-
entries(): IterableIterator<[KEY1, VALUE]>;
|
|
1614
|
-
keysArray(): KEY1[];
|
|
1615
|
-
valuesArray(): VALUE[];
|
|
1616
|
-
entriesArray(): [KEY1, VALUE][];
|
|
1617
|
-
kvKeys(): IterableIterator<[KEY1]>;
|
|
1618
|
-
kvValues(): IterableIterator<VALUE>;
|
|
1619
|
-
kvEntries(): IterableIterator<[[KEY1], VALUE]>;
|
|
1620
|
-
[Symbol.iterator](): IterableIterator<[KEY1, VALUE]>;
|
|
1621
|
-
clone(): Map1<KEY1, VALUE>;
|
|
1622
|
-
merge(other: Map1<KEY1, VALUE>, conflictResolver?: (oldValue: VALUE, newValue: VALUE, key1: KEY1) => VALUE): this;
|
|
1623
|
-
some(fn: (value: VALUE, key1: KEY1) => boolean): boolean;
|
|
1624
|
-
every(fn: (value: VALUE, key1: KEY1) => boolean): boolean;
|
|
1625
|
-
filter<S extends VALUE>(predicate: (value: VALUE, key1: KEY1, array: Map1<KEY1, VALUE>) => value is S): Map1<KEY1, S>;
|
|
1626
|
-
filter(predicate: (value: VALUE, key1: KEY1, array: Map1<KEY1, VALUE>) => unknown): Map1<KEY1, VALUE>;
|
|
1627
|
-
reduce(fn: (acc: VALUE, value: VALUE, key1: KEY1) => VALUE): VALUE;
|
|
1628
|
-
reduce<R>(fn: (acc: R, value: VALUE, key1: KEY1) => R, init: R): R;
|
|
1629
|
-
mapEntries<R>(fn: (value: VALUE, key1: KEY1) => R): R[];
|
|
1630
|
-
mapValues<R = VALUE>(fn: (value: VALUE, key1: KEY1) => R): Map1<KEY1, R>;
|
|
1631
|
-
toMap(): Map<KEY1, VALUE>;
|
|
1632
|
-
toString(): string;
|
|
1633
|
-
}
|
|
1634
|
-
|
|
1635
|
-
/**
|
|
1636
|
-
* @deprecated - Use {@link BiMap} instead. Will be removed in v2.0.0.
|
|
1637
|
-
* @private
|
|
1638
|
-
* A Map implementation mapping a double key to a value.
|
|
1639
|
-
*/
|
|
1640
|
-
declare class Map2<KEY1, KEY2, VALUE> extends BaseContainer implements KVComponent<[KEY1, KEY2], VALUE> {
|
|
1641
|
-
private map1;
|
|
1642
|
-
constructor();
|
|
1643
|
-
constructor(map2: Map2<KEY1, KEY2, VALUE>);
|
|
1644
|
-
constructor(entries: Iterable<[KEY1, KEY2, VALUE]>);
|
|
1645
|
-
has(key1: KEY1, key2: KEY2): boolean;
|
|
1646
|
-
set(key1: KEY1, key2: KEY2, value: VALUE): VALUE;
|
|
1647
|
-
get(key1: KEY1, key2: KEY2): VALUE | undefined;
|
|
1648
|
-
getOrDefault(key1: KEY1, key2: KEY2, defaultValue: VALUE): VALUE;
|
|
1649
|
-
getOrCreate(key1: KEY1, key2: KEY2, value: VALUE): VALUE;
|
|
1650
|
-
getOrCreate(key1: KEY1, key2: KEY2, creator: () => VALUE): VALUE;
|
|
1651
|
-
delete(key1: KEY1): boolean;
|
|
1652
|
-
delete(key1: KEY1, key2: KEY2): boolean;
|
|
1653
|
-
clear(): void;
|
|
1654
|
-
get size(): number;
|
|
1655
|
-
isEmpty(): boolean;
|
|
1656
|
-
forEach(callbackfn: (value: VALUE, key1: KEY1, key2: KEY2, map2: Map2<KEY1, KEY2, VALUE>) => void, thisArg?: any): void;
|
|
1657
|
-
keys(): IterableIterator<[KEY1, KEY2]>;
|
|
1658
|
-
values(): IterableIterator<VALUE>;
|
|
1659
|
-
entries(): IterableIterator<[KEY1, KEY2, VALUE]>;
|
|
1660
|
-
keysArray(): [KEY1, KEY2][];
|
|
1661
|
-
valuesArray(): VALUE[];
|
|
1662
|
-
entriesArray(): [KEY1, KEY2, VALUE][];
|
|
1663
|
-
kvKeys(): IterableIterator<[KEY1, KEY2]>;
|
|
1664
|
-
kvValues(): IterableIterator<VALUE>;
|
|
1665
|
-
kvEntries(): IterableIterator<[[KEY1, KEY2], VALUE]>;
|
|
1666
|
-
[Symbol.iterator](): IterableIterator<[KEY1, KEY2, VALUE]>;
|
|
1667
|
-
clone(): Map2<KEY1, KEY2, VALUE>;
|
|
1668
|
-
merge(other: Map2<KEY1, KEY2, VALUE>, conflictResolver?: (oldValue: VALUE, newValue: VALUE, key1: KEY1, key2: KEY2) => VALUE): this;
|
|
1669
|
-
some(fn: (value: VALUE, key1: KEY1, key2: KEY2) => boolean): boolean;
|
|
1670
|
-
every(fn: (value: VALUE, key1: KEY1, key2: KEY2) => boolean): boolean;
|
|
1671
|
-
filter<S extends VALUE>(predicate: (value: VALUE, key1: KEY1, key2: KEY2, array: Map2<KEY1, KEY2, VALUE>) => value is S): Map2<KEY1, KEY2, S>;
|
|
1672
|
-
filter(predicate: (value: VALUE, key1: KEY1, key2: KEY2, array: Map2<KEY1, KEY2, VALUE>) => unknown): Map2<KEY1, KEY2, VALUE>;
|
|
1673
|
-
reduce(fn: (acc: VALUE, value: VALUE, key1: KEY1, key2: KEY2) => VALUE): VALUE;
|
|
1674
|
-
reduce<R>(fn: (acc: R, value: VALUE, key1: KEY1, key2: KEY2) => R, init: R): R;
|
|
1675
|
-
mapEntries<R>(fn: (value: VALUE, key1: KEY1, key2: KEY2) => R): R[];
|
|
1676
|
-
mapValues<R = VALUE>(fn: (value: VALUE, key1: KEY1, key2: KEY2) => R): Map2<KEY1, KEY2, R>;
|
|
1677
|
-
toMap(): Map<[KEY1, KEY2], VALUE>;
|
|
1678
|
-
toString(): string;
|
|
1679
|
-
}
|
|
1680
|
-
|
|
1681
|
-
/**
|
|
1682
|
-
* @deprecated - Use {@link TriMap} instead. Will be removed in v2.0.0.
|
|
1683
|
-
* @private
|
|
1684
|
-
* A Map implementation mapping a triple key to a value.
|
|
1685
|
-
*/
|
|
1686
|
-
declare class Map3<KEY1, KEY2, KEY3, VALUE> extends BaseContainer implements KVComponent<[KEY1, KEY2, KEY3], VALUE> {
|
|
1687
|
-
private map1;
|
|
1688
|
-
constructor();
|
|
1689
|
-
constructor(entries: Iterable<[KEY1, KEY2, KEY3, VALUE]>);
|
|
1690
|
-
constructor(map3: Map3<KEY1, KEY2, KEY3, VALUE>);
|
|
1691
|
-
has(key1: KEY1, key2: KEY2, key3: KEY3): boolean;
|
|
1692
|
-
set(key1: KEY1, key2: KEY2, key3: KEY3, value: VALUE): VALUE;
|
|
1693
|
-
get(key1: KEY1, key2: KEY2, key3: KEY3): VALUE | undefined;
|
|
1694
|
-
getOrDefault(key1: KEY1, key2: KEY2, key3: KEY3, defaultValue: VALUE): VALUE;
|
|
1695
|
-
getOrCreate(key1: KEY1, key2: KEY2, key3: KEY3, value: VALUE): VALUE;
|
|
1696
|
-
getOrCreate(key1: KEY1, key2: KEY2, key3: KEY3, creator: () => VALUE): VALUE;
|
|
1697
|
-
delete(key1: KEY1): boolean;
|
|
1698
|
-
delete(key1: KEY1, key2: KEY2): boolean;
|
|
1699
|
-
delete(key1: KEY1, key2: KEY2, key3: KEY3): boolean;
|
|
1700
|
-
clear(): void;
|
|
1701
|
-
get size(): number;
|
|
1702
|
-
isEmpty(): boolean;
|
|
1703
|
-
forEach(callbackfn: (value: VALUE, key1: KEY1, key2: KEY2, key3: KEY3, map2: Map3<KEY1, KEY2, KEY3, VALUE>) => void, thisArg?: any): void;
|
|
1704
|
-
keys(): IterableIterator<[KEY1, KEY2, KEY3]>;
|
|
1705
|
-
values(): IterableIterator<VALUE>;
|
|
1706
|
-
entries(): IterableIterator<[KEY1, KEY2, KEY3, VALUE]>;
|
|
1707
|
-
keysArray(): [KEY1, KEY2, KEY3][];
|
|
1708
|
-
valuesArray(): VALUE[];
|
|
1709
|
-
entriesArray(): [KEY1, KEY2, KEY3, VALUE][];
|
|
1710
|
-
kvKeys(): IterableIterator<[KEY1, KEY2, KEY3]>;
|
|
1711
|
-
kvValues(): IterableIterator<VALUE>;
|
|
1712
|
-
kvEntries(): IterableIterator<[[KEY1, KEY2, KEY3], VALUE]>;
|
|
1713
|
-
[Symbol.iterator](): IterableIterator<[KEY1, KEY2, KEY3, VALUE]>;
|
|
1714
|
-
clone(): Map3<KEY1, KEY2, KEY3, VALUE>;
|
|
1715
|
-
merge(other: Map3<KEY1, KEY2, KEY3, VALUE>, conflictResolver?: (oldValue: VALUE, newValue: VALUE, key1: KEY1, key2: KEY2, key3: KEY3) => VALUE): this;
|
|
1716
|
-
some(fn: (value: VALUE, key1: KEY1, key2: KEY2, key3: KEY3) => boolean): boolean;
|
|
1717
|
-
every(fn: (value: VALUE, key1: KEY1, key2: KEY2, key3: KEY3) => boolean): boolean;
|
|
1718
|
-
filter<S extends VALUE>(predicate: (value: VALUE, key1: KEY1, key2: KEY2, key3: KEY3, array: Map3<KEY1, KEY2, KEY3, VALUE>) => value is S): Map3<KEY1, KEY2, KEY3, S>;
|
|
1719
|
-
filter(predicate: (value: VALUE, key1: KEY1, key2: KEY2, key3: KEY3, array: Map3<KEY1, KEY2, KEY3, VALUE>) => unknown): Map3<KEY1, KEY2, KEY3, VALUE>;
|
|
1720
|
-
reduce(fn: (acc: VALUE, value: VALUE, key1: KEY1, key2: KEY2, key3: KEY3) => VALUE): VALUE;
|
|
1721
|
-
reduce<R>(fn: (acc: R, value: VALUE, key1: KEY1, key2: KEY2, key3: KEY3) => R, init: R): R;
|
|
1722
|
-
mapEntries<R>(fn: (value: VALUE, key1: KEY1, key2: KEY2, key3: KEY3) => R): R[];
|
|
1723
|
-
mapValues<R = VALUE>(fn: (value: VALUE, key1: KEY1, key2: KEY2, key3: KEY3) => R): Map3<KEY1, KEY2, KEY3, R>;
|
|
1724
|
-
toMap(): Map<[KEY1, KEY2, KEY3], VALUE>;
|
|
1725
|
-
toString(): string;
|
|
1726
|
-
}
|
|
1727
|
-
|
|
1728
|
-
/**
|
|
1729
|
-
* @deprecated - Use {@link ValueSet} instead. Will be removed in v2.0.0.
|
|
1730
|
-
* @private
|
|
1731
|
-
* An abstract base class implementation of a Set data structure.
|
|
1732
|
-
*/
|
|
1733
|
-
declare abstract class SetBase<VALUE, CLS extends SetBase<VALUE, CLS> = any> extends BaseContainer implements KVComponent<[VALUE], VALUE> {
|
|
1734
|
-
protected data: Set<VALUE>;
|
|
1735
|
-
constructor(entries?: Iterable<VALUE>);
|
|
1736
|
-
protected abstract valueEquals(a: VALUE, b: VALUE): boolean;
|
|
1737
|
-
protected abstract createEmpty<R = VALUE>(): SetBase<R, any>;
|
|
1738
|
-
has(value: VALUE): boolean;
|
|
1739
|
-
add(value: VALUE): VALUE;
|
|
1740
|
-
/** @internal - This method exists only for interface `KVComponent` compatibility.*/
|
|
1741
|
-
set(key: VALUE, value: VALUE): void;
|
|
1742
|
-
/** @internal - This method exists only for interface `KVComponent` compatibility.*/
|
|
1743
|
-
get(key: VALUE): VALUE | undefined;
|
|
1744
|
-
/** @internal - This method exists only for interface `KVComponent` compatibility.*/
|
|
1745
|
-
getOrDefault(key: VALUE, defaultValue: VALUE): VALUE;
|
|
1746
|
-
/** @internal - This method exists only for interface `KVComponent` compatibility.*/
|
|
1747
|
-
getOrCreate(key: VALUE, value: VALUE): VALUE;
|
|
1748
|
-
/** @internal - This method exists only for interface `KVComponent` compatibility.*/
|
|
1749
|
-
getOrCreate(key: VALUE, creator: () => VALUE): VALUE;
|
|
1750
|
-
delete(value: VALUE): boolean;
|
|
1751
|
-
clear(): void;
|
|
1752
|
-
get size(): number;
|
|
1753
|
-
isEmpty(): boolean;
|
|
1754
|
-
forEach(callbackfn: (value: VALUE, set1: SetBase<VALUE>) => void, thisArg?: any): void;
|
|
1755
|
-
keys(): IterableIterator<VALUE>;
|
|
1756
|
-
values(): IterableIterator<VALUE>;
|
|
1757
|
-
entries(): IterableIterator<[VALUE, VALUE]>;
|
|
1758
|
-
kvKeys(): IterableIterator<[VALUE]>;
|
|
1759
|
-
kvValues(): IterableIterator<VALUE>;
|
|
1760
|
-
kvEntries(): IterableIterator<[[VALUE], VALUE]>;
|
|
1761
|
-
[Symbol.iterator](): IterableIterator<VALUE>;
|
|
1762
|
-
clone(): SetBase<VALUE>;
|
|
1763
|
-
merge(other: SetBase<VALUE>): this;
|
|
1764
|
-
some(fn: (value: VALUE) => boolean): boolean;
|
|
1765
|
-
every(fn: (value: VALUE) => boolean): boolean;
|
|
1766
|
-
filter<R extends VALUE>(predicate: (value: VALUE, set1: SetBase<VALUE, any>) => value is R): SetBase<R, any>;
|
|
1767
|
-
filter(predicate: (value: VALUE, set1: SetBase<VALUE>) => unknown): SetBase<VALUE, any>;
|
|
1768
|
-
reduce(fn: (acc: VALUE, value: VALUE) => VALUE): VALUE;
|
|
1769
|
-
reduce<R = VALUE>(fn: (acc: R, value: VALUE) => R, init: R): R;
|
|
1770
|
-
mapValues<R = VALUE>(fn: (value: VALUE) => R): SetBase<R, any>;
|
|
1771
|
-
mapToArray<R = VALUE>(fn: (value: VALUE) => R): R[];
|
|
1772
|
-
map<R = VALUE>(fn: (value: VALUE) => R): SetBase<R, any>;
|
|
1773
|
-
toSet(): Set<VALUE>;
|
|
1774
|
-
toArray(): VALUE[];
|
|
1775
|
-
toString(): string;
|
|
1776
|
-
}
|
|
1777
|
-
/**
|
|
1778
|
-
* @deprecated - Use {@link ValueSet} instead. Will be removed in v2.0.0.
|
|
1779
|
-
* @private
|
|
1780
|
-
* A simple Set data structure. Comparison of values is done
|
|
1781
|
-
* using === operator (e.g. "a" === "a", but [1, 2] !== [1, 2]).
|
|
1782
|
-
*/
|
|
1783
|
-
declare class Set1<VALUE> extends SetBase<VALUE, Set1<VALUE>> {
|
|
1784
|
-
constructor();
|
|
1785
|
-
constructor(set: SetBase<VALUE>);
|
|
1786
|
-
constructor(entries: Iterable<VALUE>);
|
|
1787
|
-
protected createEmpty<R = VALUE>(): Set1<R>;
|
|
1788
|
-
protected valueEquals(a: VALUE, b: VALUE): boolean;
|
|
1789
|
-
}
|
|
1790
|
-
/**
|
|
1791
|
-
* @deprecated - Use {@link ValueSet}.createDeep() instead. Will be removed in v2.0.0.
|
|
1792
|
-
* @private
|
|
1793
|
-
* A simple Set data structure, where comparison of values is done
|
|
1794
|
-
* using deep equality (e.g. "a" === "a" and also [1, 2] === [1, 2]).
|
|
1795
|
-
*/
|
|
1796
|
-
declare class DeepSet<VALUE> extends SetBase<VALUE, DeepSet<VALUE>> {
|
|
1797
|
-
constructor();
|
|
1798
|
-
constructor(set: SetBase<VALUE>);
|
|
1799
|
-
constructor(entries: Iterable<VALUE>);
|
|
1800
|
-
protected createEmpty<R = VALUE>(): DeepSet<R>;
|
|
1801
|
-
protected valueEquals(a: VALUE, b: VALUE): boolean;
|
|
1802
|
-
}
|
|
1803
|
-
|
|
1804
|
-
/**
|
|
1805
|
-
* @deprecated - Use {@link AnchoredRect} instead. Will be removed in v2.0.0.
|
|
1806
|
-
* @private
|
|
1807
|
-
*
|
|
1808
|
-
* A mutable DivRect class is a rectangle (left, top, right, bottom) with an anchor point (anchorX, anchorY).
|
|
1809
|
-
*/
|
|
1810
|
-
declare class DivRect {
|
|
1811
|
-
left: number;
|
|
1812
|
-
anchorX: number;
|
|
1813
|
-
right: number;
|
|
1814
|
-
top: number;
|
|
1815
|
-
anchorY: number;
|
|
1816
|
-
bottom: number;
|
|
1817
|
-
/**
|
|
1818
|
-
* Create rectangle with all zero values.
|
|
1819
|
-
*/
|
|
1820
|
-
constructor();
|
|
1821
|
-
/**
|
|
1822
|
-
* Create rectangle with left, right, top, bottom.
|
|
1823
|
-
* Properties anchorX and anchorY will be centered in the middle.
|
|
1824
|
-
*
|
|
1825
|
-
* @param left - Left coordinate.
|
|
1826
|
-
* @param right - Right coordinate.
|
|
1827
|
-
* @param top - Top coordinate.
|
|
1828
|
-
* @param bottom - Bottom coordinate.
|
|
1829
|
-
*/
|
|
1830
|
-
constructor(left: number, right: number, top: number, bottom: number);
|
|
1831
|
-
/**
|
|
1832
|
-
* Create rectangle with full arguments.
|
|
1833
|
-
*
|
|
1834
|
-
* @param left - Left coordinate.
|
|
1835
|
-
* @param anchorX - Center x-coordinate.
|
|
1836
|
-
* @param right - Right coordinate.
|
|
1837
|
-
* @param top - Top coordinate.
|
|
1838
|
-
* @param anchorY - Center y-coordinate.
|
|
1839
|
-
* @param bottom - Bottom coordinate.
|
|
1840
|
-
*/
|
|
1841
|
-
constructor(left: number, anchorX: number, right: number, top: number, anchorY: number, bottom: number);
|
|
1842
|
-
/**
|
|
1843
|
-
* Set rectangle with all zero values.
|
|
1844
|
-
*/
|
|
1845
|
-
set(): DivRect;
|
|
1846
|
-
/**
|
|
1847
|
-
* Set rectangle with left, right, top, bottom.
|
|
1848
|
-
* Properties anchorX and anchorY will be centered in the middle.
|
|
1849
|
-
*
|
|
1850
|
-
* @param left - Left coordinate.
|
|
1851
|
-
* @param right - Right coordinate.
|
|
1852
|
-
* @param top - Top coordinate.
|
|
1853
|
-
* @param bottom - Bottom coordinate.
|
|
1854
|
-
*/
|
|
1855
|
-
set(left: number, right: number, top: number, bottom: number): DivRect;
|
|
1856
|
-
/**
|
|
1857
|
-
* Set rectangle with full arguments.
|
|
1858
|
-
*
|
|
1859
|
-
* @param left - Left coordinate.
|
|
1860
|
-
* @param anchorX - Center x-coordinate.
|
|
1861
|
-
* @param right - Right coordinate.
|
|
1862
|
-
* @param top - Top coordinate.
|
|
1863
|
-
* @param anchorY - Center y-coordinate.
|
|
1864
|
-
* @param bottom - Bottom coordinate.
|
|
1865
|
-
*/
|
|
1866
|
-
set(left: number, anchorX: number, right: number, top: number, anchorY: number, bottom: number): DivRect;
|
|
1867
|
-
/**
|
|
1868
|
-
* Create rect from basic left, top, width and height arguments.
|
|
1869
|
-
*
|
|
1870
|
-
* @param left - Left coordinate.
|
|
1871
|
-
* @param top - Top coordinate.
|
|
1872
|
-
* @param width - Width.
|
|
1873
|
-
* @param height - Height.
|
|
1874
|
-
* @returns - DivRect.
|
|
1875
|
-
*/
|
|
1876
|
-
static create(left: number, top: number, width: number, height: number): DivRect;
|
|
1877
|
-
/**
|
|
1878
|
-
* Create rect from anchorX, anchorY, width, height arguments.
|
|
1879
|
-
*
|
|
1880
|
-
* @param centerX - Center x-coordinate.
|
|
1881
|
-
* @param centerY - Center y-coordinate.
|
|
1882
|
-
* @param width - Width.
|
|
1883
|
-
* @param height - Height.
|
|
1884
|
-
* @returns - DivRect.
|
|
1885
|
-
*/
|
|
1886
|
-
static createCentered(centerX: number, centerY: number, width: number, height: number): DivRect;
|
|
1887
|
-
/**
|
|
1888
|
-
* Create rect from sections.
|
|
1889
|
-
*
|
|
1890
|
-
* @param leftw - Left section width.
|
|
1891
|
-
* @param rightw - Right section width.
|
|
1892
|
-
* @param toph - Top section height.
|
|
1893
|
-
* @param bottomh - Bottomsection height.
|
|
1894
|
-
* @returns - DivRect.
|
|
1895
|
-
*/
|
|
1896
|
-
static createSections(leftw: number, rightw: number, toph: number, bottomh: number): DivRect;
|
|
1897
|
-
/**
|
|
1898
|
-
* @deprecated - Renamed to anchorX. Will be removed in v2.0.0.
|
|
1899
|
-
* @private
|
|
1900
|
-
* */
|
|
1901
|
-
get centerX(): number;
|
|
1902
|
-
/**
|
|
1903
|
-
* @deprecated - Renamed to anchorX. Will be removed in v2.0.0.
|
|
1904
|
-
* @private
|
|
1905
|
-
* */
|
|
1906
|
-
set centerX(x: number);
|
|
1907
|
-
/**
|
|
1908
|
-
* @deprecated - Renamed to anchorX. Will be removed in v2.0.0.
|
|
1909
|
-
* @private
|
|
1910
|
-
* */
|
|
1911
|
-
get centerY(): number;
|
|
1912
|
-
/**
|
|
1913
|
-
* @deprecated - Renamed to anchorX. Will be removed in v2.0.0.
|
|
1914
|
-
* @private
|
|
1915
|
-
* */
|
|
1916
|
-
set centerY(y: number);
|
|
1917
|
-
/**
|
|
1918
|
-
* Width getter.
|
|
1919
|
-
*/
|
|
1920
|
-
get width(): number;
|
|
1921
|
-
/**
|
|
1922
|
-
* Height getter.
|
|
1923
|
-
*/
|
|
1924
|
-
get height(): number;
|
|
1925
|
-
/**
|
|
1926
|
-
* Left section width getter.
|
|
1927
|
-
*/
|
|
1928
|
-
get leftw(): number;
|
|
1929
|
-
/**
|
|
1930
|
-
* Right section width getter.
|
|
1931
|
-
*/
|
|
1932
|
-
get rightw(): number;
|
|
1933
|
-
/**
|
|
1934
|
-
* Top section height getter.
|
|
1935
|
-
*/
|
|
1936
|
-
get toph(): number;
|
|
1937
|
-
/**
|
|
1938
|
-
* Bottom section height getter.
|
|
1939
|
-
*/
|
|
1940
|
-
get bottomh(): number;
|
|
1941
|
-
/**
|
|
1942
|
-
* Does this Rect contain given (x, y)-point?
|
|
1943
|
-
*
|
|
1944
|
-
* @param x - X-coordinate.
|
|
1945
|
-
* @param y - Y-coordinate.
|
|
1946
|
-
* @returns - True/false.
|
|
1947
|
-
*/
|
|
1948
|
-
contains(x: number, y: number): boolean;
|
|
1949
|
-
/**
|
|
1950
|
-
* Do a and b rects overlap?
|
|
1951
|
-
*
|
|
1952
|
-
* @param a - DivRect a.
|
|
1953
|
-
* @param b - DivRect b.
|
|
1954
|
-
* @returns - True/false.
|
|
1955
|
-
*/
|
|
1956
|
-
static overlap(a: DivRect, b: DivRect): boolean;
|
|
1957
|
-
/**
|
|
1958
|
-
* Do horizontal measures of a and b rects overlap?
|
|
1959
|
-
*
|
|
1960
|
-
* @param a - DivRect a.
|
|
1961
|
-
* @param b - DivRect b.
|
|
1962
|
-
* @returns - True/false.
|
|
1963
|
-
*/
|
|
1964
|
-
static overlapX(a: DivRect, b: DivRect): boolean;
|
|
1965
|
-
/**
|
|
1966
|
-
* Check if given rects are equal.
|
|
1967
|
-
* @param a - DivRect a.
|
|
1968
|
-
* @param b - DivRect b.
|
|
1969
|
-
* @returns - True/false.
|
|
1970
|
-
*/
|
|
1971
|
-
static equals(a: DivRect | null | undefined, b: DivRect | null | undefined): boolean;
|
|
1972
|
-
/**
|
|
1973
|
-
* Check if this rect equals with another rect.
|
|
1974
|
-
* @param other - The other rect.
|
|
1975
|
-
* @returns - True/false.
|
|
1976
|
-
*/
|
|
1977
|
-
equals(other: DivRect): boolean;
|
|
1978
|
-
/**
|
|
1979
|
-
* Check if edges of given rects are equal, ignoring anchorX and anchorY.
|
|
1980
|
-
*
|
|
1981
|
-
* @param a - DivRect a.
|
|
1982
|
-
* @param b - DivRect b.
|
|
1983
|
-
* @returns - True/false.
|
|
1984
|
-
*/
|
|
1985
|
-
static equalsEdges(a: DivRect | null | undefined, b: DivRect | null | undefined): boolean;
|
|
1986
|
-
/**
|
|
1987
|
-
* Check if edges of this Rect equals with given Rect, ignoring anchorX and anchorY.
|
|
1988
|
-
*
|
|
1989
|
-
* @param other - The other DivRect.
|
|
1990
|
-
* @returns - True/false.
|
|
1991
|
-
*/
|
|
1992
|
-
equalsEdges(other: DivRect): boolean;
|
|
1993
|
-
/**
|
|
1994
|
-
* @deprecated - Use {@link equalsEdges()} instead. Will be removed in v2.0.0.
|
|
1995
|
-
* @private
|
|
1996
|
-
*/
|
|
1997
|
-
static equalsFrame(a: DivRect | null | undefined, b: DivRect | null | undefined): boolean;
|
|
1998
|
-
/**
|
|
1999
|
-
* @deprecated - Use {@link clone()} instead. Will be removed in v2.0.0.
|
|
2000
|
-
* @private
|
|
2001
|
-
*/
|
|
2002
|
-
copy(): DivRect;
|
|
2003
|
-
/**
|
|
2004
|
-
* Created duplicate of this Rect.
|
|
2005
|
-
* @returns - Duplicate.
|
|
2006
|
-
*/
|
|
2007
|
-
clone(): DivRect;
|
|
2008
|
-
/**
|
|
2009
|
-
* Move this rect by (dx, dy). Modifies this Rect.
|
|
2010
|
-
*
|
|
2011
|
-
* @param dx - Offset amount in x-direction.
|
|
2012
|
-
* @param dy - Offset amount in y-direction.
|
|
2013
|
-
* @returns - This DivRect instance.
|
|
2014
|
-
*/
|
|
2015
|
-
offsetInPlace(dx: number, dy: number): DivRect;
|
|
2016
|
-
/**
|
|
2017
|
-
* Move this rect by (dx, dy). Immutable, returns modified copy.
|
|
2018
|
-
*
|
|
2019
|
-
* @param dx - Offset amount in x-direction.
|
|
2020
|
-
* @param dy - Offset amount in y-direction.
|
|
2021
|
-
* @returns - DivRect copy with applied offset.
|
|
2022
|
-
*/
|
|
2023
|
-
offsetCopy(dx: number, dy: number): DivRect;
|
|
2024
|
-
/**
|
|
2025
|
-
* Expand this Rect by given Rect. Modifies this Rect.
|
|
2026
|
-
*
|
|
2027
|
-
* @param rect - DivRect to expand this instance with.
|
|
2028
|
-
* @returns - This DivRect instance.
|
|
2029
|
-
*/
|
|
2030
|
-
expandInPlace(rect: DivRect): DivRect;
|
|
2031
|
-
/**
|
|
2032
|
-
* Expand this Rect by given Rect. Immutable, returns modified copy.
|
|
2033
|
-
*
|
|
2034
|
-
* @param rect - DivRect to expand this instance with.
|
|
2035
|
-
* @returns - Expanded copy of this DivRect.
|
|
2036
|
-
*/
|
|
2037
|
-
expandCopy(rect: DivRect): DivRect;
|
|
2038
|
-
/**
|
|
2039
|
-
* Clip this Rect by given Rect. Mmodifies this Rect.
|
|
2040
|
-
*
|
|
2041
|
-
* @param clipRect - DivRect to clip this instance with.
|
|
2042
|
-
* @returns - This DivRect instance.
|
|
2043
|
-
*/
|
|
2044
|
-
clipInPlace(clipRect: DivRect): DivRect;
|
|
2045
|
-
/**
|
|
2046
|
-
* Clip this Rect by given Rect. Immutable, return modified copy.
|
|
2047
|
-
*
|
|
2048
|
-
* @param clipRect - DivRecto to clip this instance with.
|
|
2049
|
-
* @returns - Clipped DivRect copy.
|
|
2050
|
-
*/
|
|
2051
|
-
clipCopy(clipRect: DivRect): DivRect;
|
|
2052
|
-
/**
|
|
2053
|
-
* Scale Rect. Anchor pos is (anchorX, anchorY). Modifies this Rect.
|
|
2054
|
-
*
|
|
2055
|
-
* @param scaleX - Scale x-amount.
|
|
2056
|
-
* @param scaleY - Scale y-amount. If undefined then scale x-amount is used.
|
|
2057
|
-
* @returns This DivRect instance.
|
|
2058
|
-
*/
|
|
2059
|
-
scaleInPlace(scaleX: number, scaleY?: number): DivRect;
|
|
2060
|
-
/**
|
|
2061
|
-
* Scale Rect. Anchor pos is (anchorX, anchorY). Immutable, returns modified copy.
|
|
2062
|
-
*
|
|
2063
|
-
* @param scaleX - Scale x-amount.
|
|
2064
|
-
* @param scaleY - Scale y-amount. If undefined then scale x-amount is used.
|
|
2065
|
-
* @returns Scaled copy of this DivRect.
|
|
2066
|
-
*/
|
|
2067
|
-
scaleCopy(scaleX: number, scaleY?: number): DivRect;
|
|
2068
|
-
/**
|
|
2069
|
-
* Get this DivRect instance.
|
|
2070
|
-
* @returns - This DivRect instance.
|
|
2071
|
-
*/
|
|
2072
|
-
getRect(): DivRect;
|
|
2073
|
-
toRect(): Rect;
|
|
2074
|
-
}
|
|
1476
|
+
declare function getLibInfo(): string;
|
|
2075
1477
|
|
|
2076
|
-
export { AnchoredRect, index$7 as Assert, BaseContainer, BiMap, cookies as Cookies,
|
|
1478
|
+
export { AnchoredRect, index$7 as Assert, BaseContainer, BiMap, cookies as Cookies, DefaultArray, DefaultEqualityFn, device as Device, type EqualityFn, index$6 as Guard, IndexArray, type KVComponent, LRUCache, LinkedList, MultiContainer, Rect, SignedIndexArray, Stack, TriMap, UniMap, index as Utils, ValueSet, Vec, asMulti, getLibInfo };
|