@sankhyalabs/core-docs 2.3.4 → 2.3.6

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.
Files changed (49) hide show
  1. package/README.md +57 -0
  2. package/classes/ApplicationContext.md +76 -0
  3. package/classes/ArrayUtils.md +89 -0
  4. package/classes/AuthorizedServiceCaller.md +76 -0
  5. package/classes/Change.md +168 -0
  6. package/classes/DataUnit.md +1394 -0
  7. package/classes/DataUnitAction.md +96 -0
  8. package/classes/DateUtils.md +190 -0
  9. package/classes/ElementIDUtils.md +243 -0
  10. package/classes/ErrorException.md +204 -0
  11. package/classes/ErrorTracking.md +54 -0
  12. package/classes/FloatingManager.md +384 -0
  13. package/classes/HttpProvider.md +96 -0
  14. package/classes/MaskFormatter-1.md +336 -0
  15. package/classes/NumberUtils.md +188 -0
  16. package/classes/ObjectUtils.md +81 -0
  17. package/classes/ReadyUtil.md +103 -0
  18. package/classes/RequestMetadata.md +84 -0
  19. package/classes/SkwHttpProvider.md +109 -0
  20. package/classes/StringUtils.md +410 -0
  21. package/classes/TimeFormatter.md +98 -0
  22. package/classes/UserAgentUtils.md +48 -0
  23. package/classes/WaitingChangeException.md +192 -0
  24. package/classes/WarningException.md +204 -0
  25. package/enums/Action.md +250 -0
  26. package/enums/ChangeOperation.md +52 -0
  27. package/enums/DataType.md +63 -0
  28. package/enums/DependencyType.md +41 -0
  29. package/enums/SortMode.md +30 -0
  30. package/enums/UserInterface.md +195 -0
  31. package/interfaces/DUActionInterceptor.md +29 -0
  32. package/interfaces/ExecutionContext.md +58 -0
  33. package/interfaces/FieldDescriptor.md +129 -0
  34. package/interfaces/Filter.md +41 -0
  35. package/interfaces/IElementIDInfo.md +30 -0
  36. package/interfaces/LoadDataRequest.md +63 -0
  37. package/interfaces/LoadDataResponse.md +30 -0
  38. package/interfaces/PageRequest.md +41 -0
  39. package/interfaces/PaginationInfo.md +63 -0
  40. package/interfaces/QuickFilter.md +30 -0
  41. package/interfaces/Record.md +40 -0
  42. package/interfaces/SavedRecord.md +55 -0
  43. package/interfaces/Sort.md +41 -0
  44. package/interfaces/SortingProvider.md +29 -0
  45. package/interfaces/UnitMetadata.md +41 -0
  46. package/interfaces/WaitingChange.md +41 -0
  47. package/modules/MaskFormatter.md +37 -0
  48. package/modules.md +63 -0
  49. package/package.json +1 -1
@@ -0,0 +1,336 @@
1
+ [@sankhyalabs/core](../README.md) / [Exports](../modules.md) / MaskFormatter
2
+
3
+ # Class: MaskFormatter
4
+
5
+ `MaskFormatter` é usado para formatar strings. Seu comportamento
6
+ é controlado pela formato do atributo `mask` que especifica quais
7
+ caracteres são válidos e onde devem estar posicionados, intercalando-os
8
+ com eventuais caracteres literais expressados no padrão informado.
9
+ Sua implementação é inspirada pela implementação em Java do [MaskFormatter](https://docs.oracle.com/javase/7/docs/api/javax/swing/text/MaskFormatter.html).
10
+
11
+ Para o padrão da máscara podem ser usados os seguintes caracteres especiais:
12
+
13
+ | Caractere | Comportamento |
14
+ |:---------:|-------------------------------------------------------------------------------------------------------------|
15
+ | # | Qualquer número |
16
+ | ' | "Escapa" o caractere que vem na sequência. Útil quando desejamos converter um caractere especial em literal.|
17
+ | U | Qualquer letra. Transforma letras maiúsculas em maiúsculas. |
18
+ | L | Qualquer letra. Transforma letras maiúsculas em minúsculas. |
19
+ | A | Qualquer letra ou número. |
20
+ | ? | Qualquer letra. Preserva maiúsculas e minúsculas. |
21
+ | * | Qualquer caractere. |
22
+
23
+ Os demais caracteres presentes no padrão serão tratados como literais, isto é,
24
+ serão apenas inseridos naquela posição.
25
+
26
+ Quando o o valor a ser formatado é menor que a máscara um 'placeHolder'
27
+ será inserido em cada posição ausente, completando a formatação.
28
+ Por padrão será usado um espaço em branco como 'placeHolder' mas
29
+ esse valor pode ser alterado.
30
+
31
+ For por exemplo:
32
+ '''
33
+ const formatter: MaskFormatter = new MaskFormatter("###-####");
34
+ formatter.placeholder = '_';
35
+ console.log(formatter.format("123"));
36
+ '''
37
+ resultaria na string '123-____'.
38
+
39
+ ##Veja mais alguns exemplos:
40
+ |Padrão |Máscara |Entrada |Saída |
41
+ |----------------|------------------|--------------|------------------|
42
+ |Telefone |(##) ####-#### |3432192515 |(34) 3219-2515 |
43
+ |CPF |###.###.###-## |12345678901 |123.456.789-01 |
44
+ |CNPJ |##.###.###/####-##|12345678901234|12.345.678/9012-34|
45
+ |CEP |##.###-### |12345678 |12.345-678 |
46
+ |PLACA (veículo) |UUU-#### |abc1234 |ABC-1234 |
47
+ |Cor RGB |'#AAAAAA |00000F0 |#0000F0 |
48
+
49
+ ## Table of contents
50
+
51
+ ### Constructors
52
+
53
+ - [constructor](MaskFormatter-1.md#constructor)
54
+
55
+ ### Properties
56
+
57
+ - [\_mask](MaskFormatter-1.md#_mask)
58
+ - [\_maskChars](MaskFormatter-1.md#_maskchars)
59
+ - [placeholder](MaskFormatter-1.md#placeholder)
60
+ - [ALPHA\_NUMERIC\_KEY](MaskFormatter-1.md#alpha_numeric_key)
61
+ - [ANYTHING\_KEY](MaskFormatter-1.md#anything_key)
62
+ - [AlphaNumericCharacter](MaskFormatter-1.md#alphanumericcharacter)
63
+ - [CHARACTER\_KEY](MaskFormatter-1.md#character_key)
64
+ - [CharCharacter](MaskFormatter-1.md#charcharacter)
65
+ - [DIGIT\_KEY](MaskFormatter-1.md#digit_key)
66
+ - [DigitMaskCharacter](MaskFormatter-1.md#digitmaskcharacter)
67
+ - [LITERAL\_KEY](MaskFormatter-1.md#literal_key)
68
+ - [LOWERCASE\_KEY](MaskFormatter-1.md#lowercase_key)
69
+ - [LiteralCharacter](MaskFormatter-1.md#literalcharacter)
70
+ - [LowerCaseCharacter](MaskFormatter-1.md#lowercasecharacter)
71
+ - [UPPERCASE\_KEY](MaskFormatter-1.md#uppercase_key)
72
+ - [UpperCaseCharacter](MaskFormatter-1.md#uppercasecharacter)
73
+
74
+ ### Accessors
75
+
76
+ - [mask](MaskFormatter-1.md#mask)
77
+
78
+ ### Methods
79
+
80
+ - [format](MaskFormatter-1.md#format)
81
+ - [updateInternalMask](MaskFormatter-1.md#updateinternalmask)
82
+
83
+ ## Constructors
84
+
85
+ ### constructor
86
+
87
+ • **new MaskFormatter**(`mask`)
88
+
89
+ #### Parameters
90
+
91
+ | Name | Type |
92
+ | :------ | :------ |
93
+ | `mask` | `string` |
94
+
95
+ #### Defined in
96
+
97
+ src/utils/MaskFormatter.ts:83
98
+
99
+ ## Properties
100
+
101
+ ### \_mask
102
+
103
+ • `Private` **\_mask**: `string` = `''`
104
+
105
+ #### Defined in
106
+
107
+ src/utils/MaskFormatter.ts:57
108
+
109
+ ___
110
+
111
+ ### \_maskChars
112
+
113
+ • `Private` **\_maskChars**: `__class`[]
114
+
115
+ #### Defined in
116
+
117
+ src/utils/MaskFormatter.ts:58
118
+
119
+ ___
120
+
121
+ ### placeholder
122
+
123
+ • **placeholder**: `string` = `' '`
124
+
125
+ Determina qual caractere será usado dos caracteres não presentes no valor
126
+ ou seja, aqueles que o usuário ainda não informou. Por padrão usamos um espaço
127
+
128
+ #### Defined in
129
+
130
+ src/utils/MaskFormatter.ts:64
131
+
132
+ ___
133
+
134
+ ### ALPHA\_NUMERIC\_KEY
135
+
136
+ ▪ `Static` `Private` **ALPHA\_NUMERIC\_KEY**: `string` = `"A"`
137
+
138
+ #### Defined in
139
+
140
+ src/utils/MaskFormatter.ts:53
141
+
142
+ ___
143
+
144
+ ### ANYTHING\_KEY
145
+
146
+ ▪ `Static` `Private` **ANYTHING\_KEY**: `string` = `"*"`
147
+
148
+ #### Defined in
149
+
150
+ src/utils/MaskFormatter.ts:55
151
+
152
+ ___
153
+
154
+ ### AlphaNumericCharacter
155
+
156
+ ▪ `Static` `Private` **AlphaNumericCharacter**: typeof `__class`
157
+
158
+ #### Defined in
159
+
160
+ src/utils/MaskFormatter.ts:303
161
+
162
+ ___
163
+
164
+ ### CHARACTER\_KEY
165
+
166
+ ▪ `Static` `Private` **CHARACTER\_KEY**: `string` = `"?"`
167
+
168
+ #### Defined in
169
+
170
+ src/utils/MaskFormatter.ts:54
171
+
172
+ ___
173
+
174
+ ### CharCharacter
175
+
176
+ ▪ `Static` `Private` **CharCharacter**: typeof `__class`
177
+
178
+ #### Defined in
179
+
180
+ src/utils/MaskFormatter.ts:311
181
+
182
+ ___
183
+
184
+ ### DIGIT\_KEY
185
+
186
+ ▪ `Static` `Private` **DIGIT\_KEY**: `string` = `"#"`
187
+
188
+ #### Defined in
189
+
190
+ src/utils/MaskFormatter.ts:49
191
+
192
+ ___
193
+
194
+ ### DigitMaskCharacter
195
+
196
+ ▪ `Static` `Private` **DigitMaskCharacter**: typeof `__class`
197
+
198
+ #### Defined in
199
+
200
+ src/utils/MaskFormatter.ts:271
201
+
202
+ ___
203
+
204
+ ### LITERAL\_KEY
205
+
206
+ ▪ `Static` `Private` **LITERAL\_KEY**: `string` = `"'"`
207
+
208
+ #### Defined in
209
+
210
+ src/utils/MaskFormatter.ts:50
211
+
212
+ ___
213
+
214
+ ### LOWERCASE\_KEY
215
+
216
+ ▪ `Static` `Private` **LOWERCASE\_KEY**: `string` = `"L"`
217
+
218
+ #### Defined in
219
+
220
+ src/utils/MaskFormatter.ts:52
221
+
222
+ ___
223
+
224
+ ### LiteralCharacter
225
+
226
+ ▪ `Static` `Private` **LiteralCharacter**: typeof `__class`
227
+
228
+ #### Defined in
229
+
230
+ src/utils/MaskFormatter.ts:252
231
+
232
+ ___
233
+
234
+ ### LowerCaseCharacter
235
+
236
+ ▪ `Static` `Private` **LowerCaseCharacter**: typeof `__class`
237
+
238
+ #### Defined in
239
+
240
+ src/utils/MaskFormatter.ts:292
241
+
242
+ ___
243
+
244
+ ### UPPERCASE\_KEY
245
+
246
+ ▪ `Static` `Private` **UPPERCASE\_KEY**: `string` = `"U"`
247
+
248
+ #### Defined in
249
+
250
+ src/utils/MaskFormatter.ts:51
251
+
252
+ ___
253
+
254
+ ### UpperCaseCharacter
255
+
256
+ ▪ `Static` `Private` **UpperCaseCharacter**: typeof `__class`
257
+
258
+ #### Defined in
259
+
260
+ src/utils/MaskFormatter.ts:282
261
+
262
+ ## Accessors
263
+
264
+ ### mask
265
+
266
+ • `get` **mask**(): `string`
267
+
268
+ Getter para mask
269
+
270
+ #### Returns
271
+
272
+ `string`
273
+
274
+ A última máscara informada.
275
+
276
+ #### Defined in
277
+
278
+ src/utils/MaskFormatter.ts:79
279
+
280
+ • `set` **mask**(`mask`): `void`
281
+
282
+ Setter para mask. Trata-se do padrão que se espera ao formatar o texto.
283
+
284
+ #### Parameters
285
+
286
+ | Name | Type |
287
+ | :------ | :------ |
288
+ | `mask` | `string` |
289
+
290
+ #### Returns
291
+
292
+ `void`
293
+
294
+ #### Defined in
295
+
296
+ src/utils/MaskFormatter.ts:69
297
+
298
+ ## Methods
299
+
300
+ ### format
301
+
302
+ ▸ **format**(`value`): `string`
303
+
304
+ Formata a string passada baseada na máscara definda pelo atributo mask.
305
+
306
+ #### Parameters
307
+
308
+ | Name | Type | Description |
309
+ | :------ | :------ | :------ |
310
+ | `value` | `string` | Valor a ser formatado |
311
+
312
+ #### Returns
313
+
314
+ `string`
315
+
316
+ O valor processado de acordo com o padrão
317
+
318
+ #### Defined in
319
+
320
+ src/utils/MaskFormatter.ts:93
321
+
322
+ ___
323
+
324
+ ### updateInternalMask
325
+
326
+ ▸ `Private` **updateInternalMask**(): `void`
327
+
328
+ Preparamos a formatação internamente de acordo com o padrão.
329
+
330
+ #### Returns
331
+
332
+ `void`
333
+
334
+ #### Defined in
335
+
336
+ src/utils/MaskFormatter.ts:110
@@ -0,0 +1,188 @@
1
+ [@sankhyalabs/core](../README.md) / [Exports](../modules.md) / NumberUtils
2
+
3
+ # Class: NumberUtils
4
+
5
+ `NumberUtils` é uma biblioteca para manipulação de números
6
+
7
+ `Métodos`:
8
+
9
+ @stringToNumber: converte um número em formato de string em um valor numérico nativo do javascript
10
+ @format: arredonda um número em formato de string baseado nos parâmetros "presision" e "prettyPrecision";
11
+
12
+ ## Table of contents
13
+
14
+ ### Constructors
15
+
16
+ - [constructor](NumberUtils.md#constructor)
17
+
18
+ ### Methods
19
+
20
+ - [changeFormat](NumberUtils.md#changeformat)
21
+ - [format](NumberUtils.md#format)
22
+ - [getValueOrDefault](NumberUtils.md#getvalueordefault)
23
+ - [getValueOrZero](NumberUtils.md#getvalueorzero)
24
+ - [keepOnlyDecimalSeparator](NumberUtils.md#keeponlydecimalseparator)
25
+ - [stringToNumber](NumberUtils.md#stringtonumber)
26
+
27
+ ## Constructors
28
+
29
+ ### constructor
30
+
31
+ • **new NumberUtils**()
32
+
33
+ ## Methods
34
+
35
+ ### changeFormat
36
+
37
+ ▸ `Static` **changeFormat**(`value`): `string`
38
+
39
+ @changeFormat: troca o formato do numero string de "PT-BR" para "EN-US" e vice-versa
40
+
41
+ #### Parameters
42
+
43
+ | Name | Type | Description |
44
+ | :------ | :------ | :------ |
45
+ | `value` | `string` | numero em formato de string a ser convertido |
46
+
47
+ #### Returns
48
+
49
+ `string`
50
+
51
+ numero em formato de string formatado de "PT-BR" para "EN-US" e vice-versa
52
+
53
+ #### Defined in
54
+
55
+ src/utils/NumberUtils.ts:171
56
+
57
+ ___
58
+
59
+ ### format
60
+
61
+ ▸ `Static` **format**(`value`, `precision`, `prettyPrecision?`): `string`
62
+
63
+ @format: converte um numero em formato de string em um numero em formato de string formatado de acordo com os parametros de "precision" e "prettyPrecision"
64
+
65
+ #### Parameters
66
+
67
+ | Name | Type | Default value | Description |
68
+ | :------ | :------ | :------ | :------ |
69
+ | `value` | `string` | `undefined` | numero em formato de string a ser convertido (Importante: formato PT-BR ou já em formato numérico - sem separador de milhares: ######.##) |
70
+ | `precision` | `number` | `undefined` | (numero de decimais) |
71
+ | `prettyPrecision` | `number` | `NaN` | (numero de zeros nos decimais) |
72
+
73
+ #### Returns
74
+
75
+ `string`
76
+
77
+ numero em formato de string formatado em PT-BR
78
+
79
+ #### Defined in
80
+
81
+ src/utils/NumberUtils.ts:83
82
+
83
+ ___
84
+
85
+ ### getValueOrDefault
86
+
87
+ ▸ `Static` **getValueOrDefault**(`value`, `defaultValue`): `number`
88
+
89
+ @getValueOrDefault: retorna o valor passado como number, caso NaN retorna o defaultValue
90
+
91
+ #### Parameters
92
+
93
+ | Name | Type | Description |
94
+ | :------ | :------ | :------ |
95
+ | `value` | `any` | numero a ser validado |
96
+ | `defaultValue` | `number` | numero a ser retornado caso o value seja inválido |
97
+
98
+ #### Returns
99
+
100
+ `number`
101
+
102
+ o proprio numero passado ou zero
103
+
104
+ #### Defined in
105
+
106
+ src/utils/NumberUtils.ts:186
107
+
108
+ ___
109
+
110
+ ### getValueOrZero
111
+
112
+ ▸ `Static` **getValueOrZero**(`value`): `number`
113
+
114
+ @getValueOrZero: valida se o parametro é undefined caso seja retorna zero.
115
+
116
+ #### Parameters
117
+
118
+ | Name | Type | Description |
119
+ | :------ | :------ | :------ |
120
+ | `value` | `any` | numero a ser validado |
121
+
122
+ #### Returns
123
+
124
+ `number`
125
+
126
+ o proprio numero passado ou zero
127
+
128
+ #### Defined in
129
+
130
+ src/utils/NumberUtils.ts:205
131
+
132
+ ___
133
+
134
+ ### keepOnlyDecimalSeparator
135
+
136
+ ▸ `Static` **keepOnlyDecimalSeparator**(`value`, `formatnumber?`): `string`
137
+
138
+ @keepOnlyDecimalSeparator: retira os separadores de milhar de um número em formato de string
139
+
140
+ #### Parameters
141
+
142
+ | Name | Type | Default value | Description |
143
+ | :------ | :------ | :------ | :------ |
144
+ | `value` | `string` | `undefined` | numero em formato de string a ser convertido |
145
+ | `formatnumber` | `string` | `'pt-BR'` | (formatação de ENTRADA e SAÍDA do utilitário: pt-BR="###.###,##" en-US="###,###.##"; Default: "pt-BR") |
146
+
147
+ #### Returns
148
+
149
+ `string`
150
+
151
+ numero em formato de string formatado apenas com separador decimal
152
+
153
+ #### Defined in
154
+
155
+ src/utils/NumberUtils.ts:147
156
+
157
+ ___
158
+
159
+ ### stringToNumber
160
+
161
+ ▸ `Static` **stringToNumber**(`value`): `number`
162
+
163
+ @stringToNumber: converte um numero em formato de string em numero
164
+
165
+ **`Exemples`**
166
+
167
+ @"100,12" | 100.12
168
+ @"100.12" | 100.12
169
+ @"-100,12" | -100.12
170
+ @"R$100,12" | 100.12
171
+ @"-R$100,12" | -100.12
172
+ @"string" | NaN
173
+
174
+ #### Parameters
175
+
176
+ | Name | Type | Description |
177
+ | :------ | :------ | :------ |
178
+ | `value` | `string` | numero em formato de string a ser convertido (Importante: formato PT-BR ou já em formato numérico: ######.##) |
179
+
180
+ #### Returns
181
+
182
+ `number`
183
+
184
+ string based number
185
+
186
+ #### Defined in
187
+
188
+ src/utils/NumberUtils.ts:33
@@ -0,0 +1,81 @@
1
+ [@sankhyalabs/core](../README.md) / [Exports](../modules.md) / ObjectUtils
2
+
3
+ # Class: ObjectUtils
4
+
5
+ ## Table of contents
6
+
7
+ ### Constructors
8
+
9
+ - [constructor](ObjectUtils.md#constructor)
10
+
11
+ ### Methods
12
+
13
+ - [copy](ObjectUtils.md#copy)
14
+ - [objectToString](ObjectUtils.md#objecttostring)
15
+ - [stringToObject](ObjectUtils.md#stringtoobject)
16
+
17
+ ## Constructors
18
+
19
+ ### constructor
20
+
21
+ • **new ObjectUtils**()
22
+
23
+ ## Methods
24
+
25
+ ### copy
26
+
27
+ ▸ `Static` **copy**(`data`): ``null`` \| `Object` \| `Object`[]
28
+
29
+ #### Parameters
30
+
31
+ | Name | Type |
32
+ | :------ | :------ |
33
+ | `data` | `Object` \| `Object`[] |
34
+
35
+ #### Returns
36
+
37
+ ``null`` \| `Object` \| `Object`[]
38
+
39
+ #### Defined in
40
+
41
+ src/utils/ObjectUtils.ts:3
42
+
43
+ ___
44
+
45
+ ### objectToString
46
+
47
+ ▸ `Static` **objectToString**(`data`): `string`
48
+
49
+ #### Parameters
50
+
51
+ | Name | Type |
52
+ | :------ | :------ |
53
+ | `data` | `Object` \| `Object`[] |
54
+
55
+ #### Returns
56
+
57
+ `string`
58
+
59
+ #### Defined in
60
+
61
+ src/utils/ObjectUtils.ts:7
62
+
63
+ ___
64
+
65
+ ### stringToObject
66
+
67
+ ▸ `Static` **stringToObject**(`data`): `Object` \| `Object`[]
68
+
69
+ #### Parameters
70
+
71
+ | Name | Type |
72
+ | :------ | :------ |
73
+ | `data` | `string` |
74
+
75
+ #### Returns
76
+
77
+ `Object` \| `Object`[]
78
+
79
+ #### Defined in
80
+
81
+ src/utils/ObjectUtils.ts:11
@@ -0,0 +1,103 @@
1
+ [@sankhyalabs/core](../README.md) / [Exports](../modules.md) / ReadyUtil
2
+
3
+ # Class: ReadyUtil
4
+
5
+ ## Table of contents
6
+
7
+ ### Constructors
8
+
9
+ - [constructor](ReadyUtil.md#constructor)
10
+
11
+ ### Properties
12
+
13
+ - [promise](ReadyUtil.md#promise)
14
+ - [resolve](ReadyUtil.md#resolve)
15
+
16
+ ### Methods
17
+
18
+ - [clean](ReadyUtil.md#clean)
19
+ - [end](ReadyUtil.md#end)
20
+ - [start](ReadyUtil.md#start)
21
+ - [whenReady](ReadyUtil.md#whenready)
22
+
23
+ ## Constructors
24
+
25
+ ### constructor
26
+
27
+ • **new ReadyUtil**()
28
+
29
+ ## Properties
30
+
31
+ ### promise
32
+
33
+ • `Private` **promise**: `any`
34
+
35
+ #### Defined in
36
+
37
+ src/utils/ReadyUtil.ts:3
38
+
39
+ ___
40
+
41
+ ### resolve
42
+
43
+ • `Private` **resolve**: `any`
44
+
45
+ #### Defined in
46
+
47
+ src/utils/ReadyUtil.ts:2
48
+
49
+ ## Methods
50
+
51
+ ### clean
52
+
53
+ ▸ `Private` **clean**(): `void`
54
+
55
+ #### Returns
56
+
57
+ `void`
58
+
59
+ #### Defined in
60
+
61
+ src/utils/ReadyUtil.ts:5
62
+
63
+ ___
64
+
65
+ ### end
66
+
67
+ ▸ **end**(): `void`
68
+
69
+ #### Returns
70
+
71
+ `void`
72
+
73
+ #### Defined in
74
+
75
+ src/utils/ReadyUtil.ts:16
76
+
77
+ ___
78
+
79
+ ### start
80
+
81
+ ▸ `Private` **start**(): `void`
82
+
83
+ #### Returns
84
+
85
+ `void`
86
+
87
+ #### Defined in
88
+
89
+ src/utils/ReadyUtil.ts:10
90
+
91
+ ___
92
+
93
+ ### whenReady
94
+
95
+ ▸ **whenReady**(): `Promise`<`unknown`\>
96
+
97
+ #### Returns
98
+
99
+ `Promise`<`unknown`\>
100
+
101
+ #### Defined in
102
+
103
+ src/utils/ReadyUtil.ts:20