@brandup/ui-helpers 1.0.31 → 1.0.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +21 -5
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -4,7 +4,10 @@ declare function getProperty(obj: any, property: string): any;
|
|
|
4
4
|
declare const object_getProperty: typeof getProperty;
|
|
5
5
|
declare const object_hasProperty: typeof hasProperty;
|
|
6
6
|
declare namespace object {
|
|
7
|
-
export {
|
|
7
|
+
export {
|
|
8
|
+
object_getProperty as getProperty,
|
|
9
|
+
object_hasProperty as hasProperty,
|
|
10
|
+
};
|
|
8
11
|
}
|
|
9
12
|
|
|
10
13
|
declare function isFunction(value: any): boolean;
|
|
@@ -13,7 +16,10 @@ declare function isString(value: any): value is string | String;
|
|
|
13
16
|
declare const type_isFunction: typeof isFunction;
|
|
14
17
|
declare const type_isString: typeof isString;
|
|
15
18
|
declare namespace type {
|
|
16
|
-
export {
|
|
19
|
+
export {
|
|
20
|
+
type_isFunction as isFunction,
|
|
21
|
+
type_isString as isString,
|
|
22
|
+
};
|
|
17
23
|
}
|
|
18
24
|
|
|
19
25
|
declare const minWait: (func: (...args: any[]) => void, minTime?: number) => (...args: any[]) => void;
|
|
@@ -28,21 +34,31 @@ declare const func_minWait: typeof minWait;
|
|
|
28
34
|
declare const func_minWaitAsync: typeof minWaitAsync;
|
|
29
35
|
declare const func_timeout: typeof timeout;
|
|
30
36
|
declare namespace func {
|
|
31
|
-
export {
|
|
37
|
+
export {
|
|
38
|
+
func_TIMEOUT_ERROR as TIMEOUT_ERROR,
|
|
39
|
+
func_delay as delay,
|
|
40
|
+
func_minWait as minWait,
|
|
41
|
+
func_minWaitAsync as minWaitAsync,
|
|
42
|
+
func_timeout as timeout,
|
|
43
|
+
};
|
|
32
44
|
}
|
|
33
45
|
|
|
34
46
|
declare function getWordEnd(count: number, word: string, one?: string, two?: string, five?: string): string;
|
|
35
47
|
|
|
36
48
|
declare const word_getWordEnd: typeof getWordEnd;
|
|
37
49
|
declare namespace word {
|
|
38
|
-
export {
|
|
50
|
+
export {
|
|
51
|
+
word_getWordEnd as getWordEnd,
|
|
52
|
+
};
|
|
39
53
|
}
|
|
40
54
|
|
|
41
55
|
declare const createGuid: () => string;
|
|
42
56
|
|
|
43
57
|
declare const guid_createGuid: typeof createGuid;
|
|
44
58
|
declare namespace guid {
|
|
45
|
-
export {
|
|
59
|
+
export {
|
|
60
|
+
guid_createGuid as createGuid,
|
|
61
|
+
};
|
|
46
62
|
}
|
|
47
63
|
|
|
48
64
|
export { func as FuncHelper, guid as Guid, object as ObjectHelper, type as TypeHelper, word as WordHelper };
|