-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.d.ts
More file actions
938 lines (931 loc) · 52.7 KB
/
index.d.ts
File metadata and controls
938 lines (931 loc) · 52.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
declare namespace BasicImmutable {
export interface IObject<T> {
/**
* Sets value at a given path, and returns a new `ImmutableObject`
*
* __Note:__ If the set operation changes the base type of your object, you
* can pass in a new type to the `set` genertic to keep your object type safe;
* e.g. `obj.set<TResult>(path, {...}): ImmutableObject<TResult>`
*
* @param path The path of the property to set
* @param value Value to set at the given path
* @return Returns new `ImmutableArray`
*/
set<TValue>(path: string, value: TValue): ImmutableObject<T>;
/**
* Sets value at a given path, and returns a new `ImmutableObject`
*
* __Note:__ If the set operation changes the base type of your object, you
* can pass in a new type to the `set` genertic to keep your object type safe;
* e.g. `obj.set<TResult>(path, {...}): ImmutableObject<TResult>`
*
* @param path The path of the property to set
* @param value Value to set at the given path
* @return Returns new `ImmutableArray`
*/
set<TResult>(path: string, value: any): ImmutableObject<TResult>;
/**
* Sets value at a given path, and returns a new `ImmutableObject`
*
* __Note:__ If the set operation changes the base type of your object, you
* can pass in a new type to the `set` genertic to keep your object type safe;
* e.g. `obj.set<TResult>(path, {...}): ImmutableObject<TResult>`
*
* @param path The path of the property to set
* @param value Value to set at the given path
* @return Returns new `ImmutableArray`
*/
set<TValue>(path: PropertyName[], value: TValue): ImmutableObject<T>;
/**
* Sets value at a given path, and returns a new `ImmutableObject`
*
* __Note:__ If the set operation changes the base type of your object, you
* can pass in a new type to the `set` genertic to keep your object type safe;
* e.g. `obj.set<TResult>(path, {...}): ImmutableObject<TResult>`
*
* @param path The path of the property to set
* @param value Value to set at the given path
* @return Returns new `ImmutableArray`
*/
set<TResult>(path: PropertyName[], value: any): ImmutableObject<TResult>;
/**
* Gets the property value at path of object. If the resolved value is undefined the defaultValue is used in its place
* @param path The path of the property to get
* @return Returns the resolved value
*/
get<K extends keyof T>(property: K): T[K];
/**
* Gets the property value at path of object. If the resolved value is undefined the defaultValue is used in its place
* @param path The path of the property to get
* @param defaultValue The value returned if the resolved value is undefined
* @return Returns the resolved value
*/
get<K extends keyof T>(property: K, defaultValue: T[K]): T[K];
/**
* Gets the property value at path of object. If the resolved value is undefined the defaultValue is used in its place
* @param path The path of the property to get
* @return Returns the resolved value
*/
get<K extends keyof T>(path: [K]): T[K];
/**
* Gets the property value at path of object. If the resolved value is undefined the defaultValue is used in its place
* @param path The path of the property to get
* @param defaultValue The value returned if the resolved value is undefined
* @return Returns the resolved value
*/
get<K extends keyof T>(path: [K], defaultValue: T[K]): T[K];
/**
* Gets the property value at path of object. If the resolved value is undefined the defaultValue is used in its place
* @param path The path of the property to get
* @return Returns the resolved value
*/
get<K extends keyof T, L extends keyof T[K]>(path: [K, L]): T[K][L];
/**
* Gets the property value at path of object. If the resolved value is undefined the defaultValue is used in its place
* @param path The path of the property to get
* @param defaultValue The value returned if the resolved value is undefined
* @return Returns the resolved value
*/
get<K extends keyof T, L extends keyof T[K]>(path: [K, L], defaultValue: T[K][L]): T[K][L];
/**
* Gets the property value at path of object. If the resolved value is undefined the defaultValue is used in its place
* @param path The path of the property to get
* @return Returns the resolved value
*/
get<K extends keyof T, L extends keyof T[K], M extends keyof T[K][L]>(path: [K, L, M]): T[K][L][M];
/**
* Gets the property value at path of object. If the resolved value is undefined the defaultValue is used in its place
* @param path The path of the property to get
* @param defaultValue The value returned if the resolved value is undefined
* @return Returns the resolved value
*/
get<K extends keyof T, L extends keyof T[K], M extends keyof T[K][L]>(path: [K, L, M], defaultValue: T[K][L][M]): T[K][L][M];
/**
* Gets the property value at path of object. If the resolved value is undefined the defaultValue is used in its place
* @param path The path of the property to get
* @return Returns the resolved value
*/
get<K extends keyof T, L extends keyof T[K], M extends keyof T[K][L], N extends keyof T[K][L][M]>(path: [K, L, M, N]): T[K][L][M][N];
/**
* Gets the property value at path of object. If the resolved value is undefined the defaultValue is used in its place
* @param path The path of the property to get
* @param defaultValue The value returned if the resolved value is undefined
* @return Returns the resolved value
*/
get<K extends keyof T, L extends keyof T[K], M extends keyof T[K][L], N extends keyof T[K][L][M]>(path: [K, L, M, N], defaultValue: T[K][L][M][N]): T[K][L][M][N];
/**
* Gets the property value at path of object. If the resolved value is undefined the defaultValue is used in its place
* @param path The path of the property to get
* @return Returns the resolved value
*/
get<K extends keyof T, L extends keyof T[K], M extends keyof T[K][L], N extends keyof T[K][L][M], O extends keyof T[K][L][M][N]>(path: [K, L, M, N, O]): T[K][L][M][N][O];
/**
* Gets the property value at path of object. If the resolved value is undefined the defaultValue is used in its place
* @param path The path of the property to get
* @param defaultValue The value returned if the resolved value is undefined
* @return Returns the resolved value
*/
get<K extends keyof T, L extends keyof T[K], M extends keyof T[K][L], N extends keyof T[K][L][M], O extends keyof T[K][L][M][N]>(path: [K, L, M, N, O], defaultValue: T[K][L][M][N][O]): T[K][L][M][N][O];
/**
* Gets the property value at path of object. If the resolved value is undefined the defaultValue is used in its place
* @param path The path of the property to get
* @return Returns the resolved value
*/
get(path: string): any;
/**
* Gets the property value at path of object. If the resolved value is undefined the defaultValue is used in its place
* @param path The path of the property to get
* @param defaultValue The value returned if the resolved value is undefined
* @return Returns the resolved value
*/
get<TValue>(path: string, defaultValue: TValue): TValue;
/**
* Gets the property value at path of object. If the resolved value is undefined the defaultValue is used in its place
* @param path The path of the property to get
* @return Returns the resolved value
*/
get(path: PropertyName[]): any;
/**
* Gets the property value at path of object. If the resolved value is undefined the defaultValue is used in its place
* @param path The path of the property to get
* @param defaultValue The value returned if the resolved value is undefined
* @return Returns the resolved value
*/
get<TValue>(path: PropertyName[], defaultValue: TValue): TValue;
/**
* Like `set` except accepts an updater function to produce the value to set
*
* __Note:__ Pass a type argument to the `update` generic to maintain
* type-safety if the update operation changes the type of your object.
*
* @param path The path of the element to set
* @param updater The function to produce the updated value
* @return Returns new `ImmutableObject`
*/
update<TValue>(path: string, updaterFunc: (value: TValue) => any): ImmutableObject<T>;
/**
* Like `set` except accepts an updater function to produce the value to set
*
* __Note:__ Pass a type argument to the `update` generic to maintain
* type-safety if the update operation changes the type of your object.
*
* @param path The path of the element to set
* @param updater The function to produce the updated value
* @return Returns new `ImmutableObject`
*/
update<TResult>(path: string, updaterFunc: (value: any) => any): ImmutableObject<TResult>;
/**
* Like `set` except accepts an updater function to produce the value to set
*
* __Note:__ Pass a type argument to the `update` generic to maintain
* type-safety if the update operation changes the type of your object.
*
* @param path The path of the element to set
* @param updater The function to produce the updated value
* @return Returns new `ImmutableObject`
*/
update<TValue>(path: PropertyName[], updaterFunc: (value: TValue) => any): ImmutableObject<T>;
/**
* Like `set` except accepts an updater function to produce the value to set
*
* __Note:__ Pass a type argument to the `update` generic to maintain
* type-safety if the update operation changes the type of your object.
*
* @param path The path of the element to set
* @param updater The function to produce the updated value
* @return Returns new `ImmutableObject`
*/
update<TResult>(path: PropertyName[], updaterFunc: (value: any) => any): ImmutableObject<TResult>;
/**
* Returns a new `ImmutableObject` with element at a given path or position removed
*
* __Note:__ Pass a type argument to the `delete` generic to maintain
* type-safety if the delete operation changes the type of your object.
*
* @param index The position of the element to delete
* @return Returns new `ImmutableObject`
*/
delete(index: number): ImmutableObject<T>;
/**
* Returns a new `ImmutableObject` with element at a given path or position removed
*
* __Note:__ Pass a type argument to the `delete` generic to maintain
* type-safety if the delete operation changes the type of your object.
*
* @param index The position of the element to delete
* @return Returns new `ImmutableObject`
*/
delete<TResult>(index: number): ImmutableObject<TResult>;
/**
* Returns a new `ImmutableObject` with element at a given path or position removed
*
* __Note:__ Pass a type argument to the `delete` generic to maintain
* type-safety if the delete operation changes the type of your object.
*
* @param index The position of the element to delete
* @return Returns new `ImmutableObject`
*/
delete(path: string): ImmutableObject<T>;
/**
* Returns a new `ImmutableObject` with element at a given path or position removed
*
* __Note:__ Pass a type argument to the `delete` generic to maintain
* type-safety if the delete operation changes the type of your object.
*
* @param index The position of the element to delete
* @return Returns new `ImmutableObject`
*/
delete<TResult>(path: string): ImmutableObject<TResult>;
/**
* Returns a new `ImmutableObject` with element at a given path or position removed
*
* __Note:__ Pass a type argument to the `delete` generic to maintain
* type-safety if the delete operation changes the type of your object.
*
* @param index The position of the element to delete
* @return Returns new `ImmutableObject`
*/
delete(path: PropertyName[]): ImmutableObject<T>;
/**
* Returns a new `ImmutableObject` with element at a given path or position removed
*
* __Note:__ Pass a type argument to the `delete` generic to maintain
* type-safety if the delete operation changes the type of your object.
*
* @param index The position of the element to delete
* @return Returns new `ImmutableObject`
*/
delete<TResult>(path: PropertyName[]): ImmutableObject<TResult>;
/**
* Recursively merges own and inherited enumerable properties of source
* objects into the destination object, skipping source properties that resolve
* to `undefined` and throwing if source object keys are not found on target.
* Use `mergeTolerant` for greater flexibility.
* @param sources The source object(s)
* @return Returns new `ImmutableObject`
*/
merge(...sources: Partial<T>[]): ImmutableObject<T>;
/**
* Like `merge` except accepts source objects that do not share common keys with target.
* Use `merge` for more strict merging.
* @param sources The source object(s)
* @return Returns new `ImmutableObject`
*/
mergeTolerant<TSource>(source: TSource): ImmutableObject<T & TSource>;
/**
* Like `merge` except accepts source objects that do not share common keys with target.
* Use `merge` for more strict merging.
* @param sources The source object(s)
* @return Returns new `ImmutableObject`
*/
mergeTolerant<TSource1, TSource2>(source1: TSource1, source2: TSource2): ImmutableObject<T & TSource1 & TSource2>;
/**
* Like `merge` except accepts source objects that do not share common keys with target.
* Use `merge` for more strict merging.
* @param sources The source object(s)
* @return Returns new `ImmutableObject`
*/
mergeTolerant<TSource1, TSource2, TSource3>(source1: TSource1, source2: TSource2, source3: TSource3): ImmutableObject<T & TSource1 & TSource2 & TSource3>;
/**
* Like `merge` except accepts source objects that do not share common keys with target.
* Use `merge` for more strict merging.
* @param sources The source object(s)
* @return Returns new `ImmutableObject`
*/
mergeTolerant<TSource1, TSource2, TSource3, TSource4>(source1: TSource1, source2: TSource2, source3: TSource3, source4: TSource4): ImmutableObject<T & TSource1 & TSource2 & TSource3 & TSource4>;
/**
* Like `merge` except accepts source objects that do not share common keys with target.
* Use `merge` for more strict merging.
* @param sources The source object(s)
* @return Returns new `ImmutableObject`
*/
mergeTolerant(...sources: any[]): ImmutableObject<T & any>;
/**
* Converts to mutable ImmutableObject, i.e. Immutable methods are still available,
* but mutations are allowed until another `ImmutableObject` method is called
* @return Returns new `ImmutableObject`
*/
asMutable(): ImmutableObject<T>;
/**
* Converts `ImmutableObject` to plain-old JavaScript
* @return Returns object
*/
toJS(): T;
/**
* Converts `ImmutableObject` to plain-old JavaScript
* @param frozen Whether or not the resulting object should be frozen
* @return Returns object
*/
toJS(frozen: boolean): Readonly<T>;
/**
* Performs a deep comparison between this and the given argument
* @param comparison The values to compare with this
* @return boolean
*/
equals(comparison: any): boolean;
/**
* Returns a new `ImmutableArray` containing the values of the object's keys
*
* __Note:__ If using TypeScript, and your object has been explicitly typed, e.g.
* Immutable<{ a: 1, b: 2 }>({a: 1, b: 2}), and no type argument is explicitly
* passed to the `toArray` generic, this method will essentially rerturn a tuple,
* which is strictly typed to allow only the values found in your object. For a
* less strictly typed array, pass a type argument, e.g. toArray<number>(), this
* way you will be able to add additional data with the type number to your array.
* @return Returns new `ImmutableArray`
*/
toArray<K extends keyof T>(): ImmutableArray<T[K]>;
/**
* Returns a new `ImmutableArray` containing the values of the object's keys
*
* __Note:__ If using TypeScript, and your object has been explicitly typed, e.g.
* Immutable<{ a: 1, b: 2 }>({a: 1, b: 2}), and no type argument is explicitly
* passed to the `toArray` generic, this method will essentially rerturn a tuple,
* which is strictly typed to allow only the values found in your object. For a
* less strictly typed array, pass a type argument, e.g. toArray<number>(), this
* way you will be able to add additional data with the type number to your array.
* @return Returns new `ImmutableArray`
*/
toArray<TTypes>(): ImmutableArray<TTypes>;
}
interface IArray<T> {
/**
* Returns a new `ImmutableArray` with elements inserted at the end of the array
* @param items New elements of the Array
* @return Returns new `ImmutableArray`
*/
push(...items: T[]): ImmutableArray<T>;
/**
* Returns a new `ImmutableArray` with elements inserted at the end of the array
* @param items New elements of the Array
* @return Returns new `ImmutableArray`
*/
push<TResult>(...items: T[]): ImmutableArray<TResult>;
/**
* Returns a new `ImmutableArray` with the last element removed from it
* @return Returns new `ImmutableArray`
*/
pop(): ImmutableArray<T>;
/**
* Returns a new `ImmutableArray` with the last element removed from it
* @return Returns new `ImmutableArray`
*/
pop<TResult>(): ImmutableArray<TResult>;
/**
* Returns a new `ImmutableArray` with the elements reversed
* @return Returns new `ImmutableArray`
*/
reverse(): ImmutableArray<T>;
/**
* Returns a new `ImmutableArray` with the first element removed from it
* @return Returns new `ImmutableArray`
*/
shift(): ImmutableArray<T>;
/**
* Returns a new `ImmutableArray` with the first element removed from it
* @return Returns new `ImmutableArray`
*/
shift<TResult>(): ImmutableArray<TResult>;
/**
* Returns a new, sorted `ImmutableArray`
* @param compareFn The function used to determine the order of the elements If omitted, the elements are sorted in ascending, ASCII character order
* @return Returns new `ImmutableArray`
*/
sort(compareFn?: (a: T, b: T) => number): ImmutableArray<T>;
/**
* Returns a new ImmutableArray, with elements removed and, if necessary, inserts new elements in their place
* @param start The zero-based location in the array from which to start removing elements
* @param deleteCount The number of elements to remove
* @return Returns new `ImmutableArray`
*/
splice(start: number, deleteCount?: number): ImmutableArray<T>;
/**
* Returns a new ImmutableArray, with elements removed and, if necessary, inserts new elements in their place
* @param start The zero-based location in the array from which to start removing elements
* @param deleteCount The number of elements to remove
* @return Returns new `ImmutableArray`
*/
splice<TResult>(start: number, deleteCount?: number): ImmutableArray<TResult>;
/**
* Returns a new ImmutableArray, with elements removed and, if necessary, inserts new elements in their place
* @param start The zero-based location in the array from which to start removing elements
* @param deleteCount The number of elements to remove
* @param items Elements to insert into the array in place of the deleted elements
* @return Returns new `ImmutableArray`
*/
splice(start: number, deleteCount: number, ...items: T[]): ImmutableArray<T>;
/**
* Returns a new ImmutableArray, with elements removed and, if necessary, inserts new elements in their place
* @param start The zero-based location in the array from which to start removing elements
* @param deleteCount The number of elements to remove
* @param items Elements to insert into the array in place of the deleted elements
* @return Returns new `ImmutableArray`
*/
splice<TResult>(start: number, deleteCount: number, ...items: T[]): ImmutableArray<TResult>;
/**
* Returns a new `ImmutableArray` with new elements inserted at the start of an array
* @param items Elements to insert at the start of the Array
* @return Returns new `ImmutableArray`
*/
unshift(...items: T[]): ImmutableArray<T>;
/**
* Returns a new `ImmutableArray` with new elements inserted at the start of an array
* @param items Elements to insert at the start of the Array
* @return Returns new `ImmutableArray`
*/
unshift<TResult>(...items: T[]): ImmutableArray<TResult>;
/**
* Returns a new `ImmutableArray` with part of the array copied to another location in the same array, without modifying its size
* @param target Zero based index at which to copy the sequence to If negative, target will be counted from the end
* @param start Zero based index at which to start copying elements from If negative, start will be counted from the end
* @param end Zero based index at which to end copying elements from copyWithin copies up to but not including end If negative, end will be counted from the end
* @return Returns new `ImmutableArray`
*/
copyWithin(target: number, start?: number, end?: number): ImmutableArray<T>;
/**
* Returns a new `ImmutableArray` with part of the array copied to another location in the same array, without modifying its size
* @param target Zero based index at which to copy the sequence to If negative, target will be counted from the end
* @param start Zero based index at which to start copying elements from If negative, start will be counted from the end
* @param end Zero based index at which to end copying elements from copyWithin copies up to but not including end If negative, end will be counted from the end
* @return Returns new `ImmutableArray`
*/
copyWithin<TResult>(target: number, start?: number, end?: number): ImmutableArray<TResult>;
/**
* Returns a new `ImmutableArray` filled from a start index to an end index with a static value The end index is not included
* @param value Value to fill array section with
* @param start Index to start filling the array at If start is negative, it is treated as length+start where length is the length of the array
* @param end Index to stop filling the array at If end is negative, it is treated as length+end
* @return Returns new `ImmutableArray`
*/
fill(value: T, start?: number, end?: number): ImmutableArray<T>;
/**
* Returns a new `ImmutableArray` filled from a start index to an end index with a static value The end index is not included
* @param value Value to fill array section with
* @param start Index to start filling the array at If start is negative, it is treated as length+start where length is the length of the array
* @param end Index to stop filling the array at If end is negative, it is treated as length+end
* @return Returns new `ImmutableArray`
*/
fill<TResult>(value: T, start?: number, end?: number): ImmutableArray<TResult>;
/**
* Gets the element at path of array. If the resolved value is undefined the defaultValue is used in its place.
* @param index Position in array at wich to return
* @return Returns `ImmutableArray` element
*/
get(index: number): T;
/**
* Gets the element at path of array. If the resolved value is undefined the defaultValue is used in its place.
* @param index Position in array at wich to return
* @param defaultValue Value to return if index is invalid
* @return Returns `ImmutableArray` element
*/
get<TValue>(index: number, defaultValue: TValue): TValue;
/**
* Gets the element at path of array. If the resolved value is undefined the defaultValue is used in its place.
* @param path The path of the element to get
* @return Returns `ImmutableArray` element
*/
get(path: string): T;
/**
* Gets the element at path of array. If the resolved value is undefined the defaultValue is used in its place.
* @param path The path of the element to get
* @param defaultValue Value to return if path is invalid
* @return Returns new `ImmutableArray` element
*/
get<TValue>(path: string, defaultValue: TValue): TValue;
/**
* Gets the element at path of array. If the resolved value is undefined the defaultValue is used in its place.
* @param path The path of the element to get
* @return Returns `ImmutableArray` element
*/
get(path: PropertyName[]): T;
/**
* Gets the element at path of array. If the resolved value is undefined the defaultValue is used in its place.
* @param path The path of the element to get
* @param defaultValue Value to return if path is invalid
* @return Returns `ImmutableArray` element
*/
get<TValue>(path: PropertyName[], defaultValue: TValue): TValue;
/**
* Sets value at a given position or path, and returns a new `ImmutableArray`
*
* __Note:__ If the set operation changes the base type of your array, you
* can pass in a new type to the `set` genertic to keep your array type safe;
* e.g. `arr.set<TResult>(...): ImmutableArray<TResult>`
*
* @param index The position of the element to set
* @param value Value to set at the given position
* @return Returns new `ImmutableArray`
*/
set<TValue>(index: number, value: TValue): ImmutableArray<T>;
/**
* Sets value at a given position or path, and returns a new `ImmutableArray`
*
* __Note:__ If the set operation changes the base type of your array, you
* can pass in a new type to the `set` genertic to keep your array type safe;
* e.g. `arr.set<TResult>(...): ImmutableArray<TResult>`
*
* @param index The position of the element to set
* @param value Value to set at the given position
* @return Returns new `ImmutableArray`
*/
set<TResult>(index: number, value: any): ImmutableArray<TResult>;
/**
* Sets value at a given position or path, and returns a new `ImmutableArray`
*
* __Note:__ If the set operation changes the base type of your array, you
* can pass in a new type to the `set` genertic to keep your array type safe;
* e.g. `arr.set<TResult>(...): ImmutableArray<TResult>`
*
* @param index The position of the element to set
* @param value Value to set at the given position
* @return Returns new `ImmutableArray`
*/
set<TValue>(path: string, value: TValue): ImmutableArray<T>;
/**
* Sets value at a given position or path, and returns a new `ImmutableArray`
*
* __Note:__ If the set operation changes the base type of your array, you
* can pass in a new type to the `set` genertic to keep your array type safe;
* e.g. `arr.set<TResult>(...): ImmutableArray<TResult>`
*
* @param index The position of the element to set
* @param value Value to set at the given position
* @return Returns new `ImmutableArray`
*/
set<TResult>(path: string, value: any): ImmutableArray<TResult>;
/**
* Sets value at a given position or path, and returns a new `ImmutableArray`
*
* __Note:__ If the set operation changes the base type of your array, you
* can pass in a new type to the `set` genertic to keep your array type safe;
* e.g. `arr.set<TResult>(...): ImmutableArray<TResult>`
*
* @param index The position of the element to set
* @param value Value to set at the given position
* @return Returns new `ImmutableArray`
*/
set<TValue>(path: PropertyName[], value: TValue): ImmutableArray<T>;
/**
* Sets value at a given position or path, and returns a new `ImmutableArray`
*
* __Note:__ If the set operation changes the base type of your array, you
* can pass in a new type to the `set` genertic to keep your array type safe;
* e.g. `arr.set<TResult>(...): ImmutableArray<TResult>`
*
* @param index The position of the element to set
* @param value Value to set at the given position
* @return Returns new `ImmutableArray`
*/
set<TResult>(path: PropertyName[], value: any): ImmutableArray<TResult>;
/**
* Like `set` except accepts an updater function to produce the value to set
*
* __Note:__ Pass a type argument to the `update` generic to maintain
* type-safety if the update operation changes the type of your array.
*
* @param index The position of the element to set
* @param updater The function to produce the updated value
* @return Returns new `ImmutableArray`
*/
update(index: number, updater: (value: T) => T): ImmutableArray<T>;
/**
* Like `set` except accepts an updater function to produce the value to set
*
* __Note:__ Pass a type argument to the `update` generic to maintain
* type-safety if the update operation changes the type of your array.
*
* @param index The position of the element to set
* @param updater The function to produce the updated value
* @return Returns new `ImmutableArray`
*/
update<TResult>(index: number, updater: (value: T) => T): ImmutableArray<TResult>;
/**
* Like `set` except accepts an updater function to produce the value to set
*
* __Note:__ Pass a type argument to the `update` generic to maintain
* type-safety if the update operation changes the type of your array.
*
* @param path The path of the element to set
* @param updater The function to produce the updated value
* @return Returns new `ImmutableArray`
*/
update(path: string, updater: (value: T) => T): ImmutableArray<T>;
/**
* Like `set` except accepts an updater function to produce the value to set
*
* __Note:__ Pass a type argument to the `update` generic to maintain
* type-safety if the update operation changes the type of your array.
*
* @param path The path of the element to set
* @param updater The function to produce the updated value
* @return Returns new `ImmutableArray`
*/
update<TResult>(path: string, updater: (value: T) => T): ImmutableArray<TResult>;
/**
* Like `set` except accepts an updater function to produce the value to set
*
* __Note:__ Pass a type argument to the `update` generic to maintain
* type-safety if the update operation changes the type of your array.
*
* @param path The path of the element to set
* @param updater The function to produce the updated value
* @return Returns new `ImmutableArray`
*/
update(path: PropertyName[], updater: (value: T) => T): ImmutableArray<T>;
/**
* Like `set` except accepts an updater function to produce the value to set
*
* __Note:__ Pass a type argument to the `update` generic to maintain
* type-safety if the update operation changes the type of your array.
*
* @param path The path of the element to set
* @param updater The function to produce the updated value
* @return Returns new `ImmutableArray`
*/
update<TResult>(path: PropertyName[], updater: (value: T) => T): ImmutableArray<TResult>;
/**
* Returns a new `ImmutableArray` with element at a given path or position removed
*
* __Note:__ Pass a type argument to the `delete` generic to maintain
* type-safety if the delete operation changes the type of your array.
*
* @param index The position of the element to delete
* @return Returns new `ImmutableArray`
*/
delete(index: number): ImmutableArray<T>;
/**
* Returns a new `ImmutableArray` with element at a given path or position removed
*
* __Note:__ Pass a type argument to the `delete` generic to maintain
* type-safety if the delete operation changes the type of your array.
*
* @param index The position of the element to delete
* @return Returns new `ImmutableArray`
*/
delete<TResult>(index: number): ImmutableArray<TResult>;
/**
* Returns a new `ImmutableArray` with element at a given path or position removed
*
* __Note:__ Pass a type argument to the `delete` generic to maintain
* type-safety if the delete operation changes the type of your array.
*
* @param index The position of the element to delete
* @return Returns new `ImmutableArray`
*/
delete(path: string): ImmutableArray<T>;
/**
* Returns a new `ImmutableArray` with element at a given path or position removed
*
* __Note:__ Pass a type argument to the `delete` generic to maintain
* type-safety if the delete operation changes the type of your array.
*
* @param index The position of the element to delete
* @return Returns new `ImmutableArray`
*/
delete<TResult>(path: string): ImmutableArray<TResult>;
/**
* Returns a new `ImmutableArray` with element at a given path or position removed
*
* __Note:__ Pass a type argument to the `delete` generic to maintain
* type-safety if the delete operation changes the type of your array.
*
* @param index The position of the element to delete
* @return Returns new `ImmutableArray`
*/
delete(path: PropertyName[]): ImmutableArray<T>;
/**
* Returns a new `ImmutableArray` with element at a given path or position removed
*
* __Note:__ Pass a type argument to the `delete` generic to maintain
* type-safety if the delete operation changes the type of your array.
*
* @param index The position of the element to delete
* @return Returns new `ImmutableArray`
*/
delete<TResult>(path: PropertyName[]): ImmutableArray<TResult>;
/**
* Removes all provided values from an `ImmutableArray` using SameValueZero for equality comparisons
*
* __Note:__ Pass a type argument to the `pull` generic to maintain
* type-safety if the pull operation changes the type of your array.
*
* @param pullDeep Indicates whether or not to pull value(s)
* only from the top level array, or to pull value(s) recursively
* @param values The values to remove
* @return Returns new `ImmutableArray`
*/
pull(pullDeep: boolean, ...values: T[]): ImmutableArray<T>;
/**
* Removes all provided values from an `ImmutableArray` using SameValueZero for equality comparisons
*
* __Note:__ Pass a type argument to the `pull` generic to maintain
* type-safety if the pull operation changes the type of your array.
*
* @param pullDeep Indicates whether or not to pull value(s)
* only from the top level array, or to pull value(s) recursively
* @param values The values to remove
* @return Returns new `ImmutableArray`
*/
pull<TResult>(pullDeep: boolean, ...values: T[]): ImmutableArray<TResult>;
/**
* Flattens `ImmutableArray` either a single level deep or reccursively depending on provided parameter.
*
* @param deep [optional] Pass `true` to indicate flattening should take place recursively.
* @returns Returns new `ImmutableArray`
*/
flatten(deep?: 'deep'): ImmutableArray<T>;
/**
* Flattens `ImmutableArray` either a single level deep or reccursively depending on provided parameter.
*
* @param deep [optional] Pass `true` to indicate flattening should take place recursively.
* @returns Returns new `ImmutableArray`
*/
flatten<TResult>(deep?: 'deep'): ImmutableArray<TResult>;
/**
* Performs a deep comparison between this and the given argument
* @param comparison The values to compare with this
* @return boolean
*/
equals(comparison: any): boolean;
/**
* Maps over array and converts to ImmutableObject. Keys-value pairs are produced by the elements
* in the array (values) and by providing a key-initializer argument as described below (keys).
*
* __Note:__ that in TypeScript, unless you pass an explicit type to the toObject generic, this method does cause your object to
* lose some type-safety as the resulting type will not be as strict as it would be if you created an `ImmutableObject` directly.
* Providing a type argument is highly recommended.
*
* @param keyInitializer A single-letter string, equivalent to `/[a-zA-Z]/`, number, or function synonymous with an `Array.map` callback.
* If provided a letter or number, keys will begin with that letter or number and be incremented for each element of
* the array. To designate custom keys, proivde an `Array.map` callback instead.
* If undefined, keys will be equal to their values (numbers) or the stringified version of their values.
* Both `number` and `string` key indexers will be allowed unless an explicit result type is passed to the `toObject`
* generic, e.g. `arr.toObect<{ [key: string]: number; }>();`
* @return Returns a new `ImmutableObject`
*/
toObject(): ImmutableObject<{ [key: string]: T; [key: number]: T }>;
/**
* Maps over array and converts to ImmutableObject. Keys-value pairs are produced by the elements
* in the array (values) and by providing a key-initializer argument as described below (keys).
*
* __Note:__ that in TypeScript, unless you pass an explicit type to the toObject generic, this method does cause your object to
* lose some type-safety as the resulting type will not be as strict as it would be if you created an `ImmutableObject` directly.
* Providing a type argument is highly recommended.
*
* @param keyInitializer A single-letter string, equivalent to `/[a-zA-Z]/`, number, or function synonymous with an `Array.map` callback.
* If provided a letter or number, keys will begin with that letter or number and be incremented for each element of
* the array. To designate custom keys, proivde an `Array.map` callback instead.
* If undefined, keys will be equal to their values (numbers) or the stringified version of their values.
* Both `number` and `string` key indexers will be allowed unless an explicit result type is passed to the `toObject`
* generic, e.g. `arr.toObect<{ [key: string]: number; }>();`
* @return Returns a new `ImmutableObject`
*/
toObject<TResult>(): ImmutableObject<TResult>;
/**
* Maps over array and converts to ImmutableObject. Keys-value pairs are produced by the elements
* in the array (values) and by providing a key-initializer argument as described below (keys).
*
* __Note:__ that in TypeScript, unless you pass an explicit type to the toObject generic, this method does cause your object to
* lose some type-safety as the resulting type will not be as strict as it would be if you created an `ImmutableObject` directly.
* Providing a type argument is highly recommended.
*
* @param keyInitializer A single-letter string, equivalent to `/[a-zA-Z]/`, number, or function synonymous with an `Array.map` callback.
* If provided a letter or number, keys will begin with that letter or number and be incremented for each element of
* the array. To designate custom keys, proivde an `Array.map` callback instead.
* If undefined, keys will be equal to their values (numbers) or the stringified version of their values.
* Both `number` and `string` key indexers will be allowed unless an explicit result type is passed to the `toObject`
* generic, e.g. `arr.toObect<{ [key: string]: number; }>();`
* @return Returns a new `ImmutableObject`
*/
toObject(keyInitializer: string): ImmutableObject<{ [key: string]: T; }>;
/**
* Maps over array and converts to ImmutableObject. Keys-value pairs are produced by the elements
* in the array (values) and by providing a key-initializer argument as described below (keys).
*
* __Note:__ that in TypeScript, unless you pass an explicit type to the toObject generic, this method does cause your object to
* lose some type-safety as the resulting type will not be as strict as it would be if you created an `ImmutableObject` directly.
* Providing a type argument is highly recommended.
*
* @param keyInitializer A single-letter string, equivalent to `/[a-zA-Z]/`, number, or function synonymous with an `Array.map` callback.
* If provided a letter or number, keys will begin with that letter or number and be incremented for each element of
* the array. To designate custom keys, proivde an `Array.map` callback instead.
* If undefined, keys will be equal to their values (numbers) or the stringified version of their values.
* Both `number` and `string` key indexers will be allowed unless an explicit result type is passed to the `toObject`
* generic, e.g. `arr.toObect<{ [key: string]: number; }>();`
* @return Returns a new `ImmutableObject`
*/
toObject<TResult>(keyInitializer: string): ImmutableObject<TResult>;
/**
* Maps over array and converts to ImmutableObject. Keys-value pairs are produced by the elements
* in the array (values) and by providing a key-initializer argument as described below (keys).
*
* __Note:__ that in TypeScript, unless you pass an explicit type to the toObject generic, this method does cause your object to
* lose some type-safety as the resulting type will not be as strict as it would be if you created an `ImmutableObject` directly.
* Providing a type argument is highly recommended.
*
* @param keyInitializer A single-letter string, equivalent to `/[a-zA-Z]/`, number, or function synonymous with an `Array.map` callback.
* If provided a letter or number, keys will begin with that letter or number and be incremented for each element of
* the array. To designate custom keys, proivde an `Array.map` callback instead.
* If undefined, keys will be equal to their values (numbers) or the stringified version of their values.
* Both `number` and `string` key indexers will be allowed unless an explicit result type is passed to the `toObject`
* generic, e.g. `arr.toObect<{ [key: string]: number; }>();`
* @return Returns a new `ImmutableObject`
*/
toObject(keyInitializer: number): ImmutableObject<{ [key: number]: T; }>;
/**
* Maps over array and converts to ImmutableObject. Keys-value pairs are produced by the elements
* in the array (values) and by providing a key-initializer argument as described below (keys).
*
* __Note:__ that in TypeScript, unless you pass an explicit type to the toObject generic, this method does cause your object to
* lose some type-safety as the resulting type will not be as strict as it would be if you created an `ImmutableObject` directly.
* Providing a type argument is highly recommended.
*
* @param keyInitializer A single-letter string, equivalent to `/[a-zA-Z]/`, number, or function synonymous with an `Array.map` callback.
* If provided a letter or number, keys will begin with that letter or number and be incremented for each element of
* the array. To designate custom keys, proivde an `Array.map` callback instead.
* If undefined, keys will be equal to their values (numbers) or the stringified version of their values.
* Both `number` and `string` key indexers will be allowed unless an explicit result type is passed to the `toObject`
* generic, e.g. `arr.toObect<{ [key: string]: number; }>();`
* @return Returns a new `ImmutableObject`
*/
toObject<TResult>(keyInitializer: number): ImmutableObject<TResult>;
/**
* Maps over array and converts to ImmutableObject. Keys-value pairs are produced by the elements
* in the array (values) and by providing a key-initializer argument as described below (keys).
*
* __Note:__ that in TypeScript, unless you pass an explicit type to the toObject generic, this method does cause your object to
* lose some type-safety as the resulting type will not be as strict as it would be if you created an `ImmutableObject` directly.
* Providing a type argument is highly recommended.
*
* @param keyInitializer A single-letter string, equivalent to `/[a-zA-Z]/`, number, or function synonymous with an `Array.map` callback.
* If provided a letter or number, keys will begin with that letter or number and be incremented for each element of
* the array. To designate custom keys, proivde an `Array.map` callback instead.
* If undefined, keys will be equal to their values (numbers) or the stringified version of their values.
* Both `number` and `string` key indexers will be allowed unless an explicit result type is passed to the `toObject`
* generic, e.g. `arr.toObect<{ [key: string]: number; }>();`
* @return Returns a new `ImmutableObject`
*/
toObject(keyInitializer: MapCallback<T>): ImmutableObject<{ [key: string]: T; }>;
/**
* Maps over array and converts to ImmutableObject. Keys-value pairs are produced by the elements
* in the array (values) and by providing a key-initializer argument as described below (keys).
*
* __Note:__ that in TypeScript, unless you pass an explicit type to the toObject generic, this method does cause your object to
* lose some type-safety as the resulting type will not be as strict as it would be if you created an `ImmutableObject` directly.
* Providing a type argument is highly recommended.
*
* @param keyInitializer A single-letter string, equivalent to `/[a-zA-Z]/`, number, or function synonymous with an `Array.map` callback.
* If provided a letter or number, keys will begin with that letter or number and be incremented for each element of
* the array. To designate custom keys, proivde an `Array.map` callback instead.
* If undefined, keys will be equal to their values (numbers) or the stringified version of their values.
* Both `number` and `string` key indexers will be allowed unless an explicit result type is passed to the `toObject`
* generic, e.g. `arr.toObect<{ [key: string]: number; }>();`
* @return Returns a new `ImmutableObject`
*/
toObject(keyInitializer: MapCallback<T>): ImmutableObject<{ [key: number]: T; }>;
/**
* Maps over array and converts to ImmutableObject. Keys-value pairs are produced by the elements
* in the array (values) and by providing a key-initializer argument as described below (keys).
*
* __Note:__ that in TypeScript, unless you pass an explicit type to the toObject generic, this method does cause your object to
* lose some type-safety as the resulting type will not be as strict as it would be if you created an `ImmutableObject` directly.
* Providing a type argument is highly recommended.
*
* @param keyInitializer A single-letter string, equivalent to `/[a-zA-Z]/`, number, or function synonymous with an `Array.map` callback.
* If provided a letter or number, keys will begin with that letter or number and be incremented for each element of
* the array. To designate custom keys, proivde an `Array.map` callback instead.
* If undefined, keys will be equal to their values (numbers) or the stringified version of their values.
* Both `number` and `string` key indexers will be allowed unless an explicit result type is passed to the `toObject`
* generic, e.g. `arr.toObect<{ [key: string]: number; }>();`
* @return Returns a new `ImmutableObject`
*/
toObject<TResult>(keyInitializer: MapCallback<T>): ImmutableObject<TResult>;
/**
* Converts to mutable ImmutableArray, i.e. Immutable methods are still available,
* but mutations are allowed until another `ImmutableArray` method is called
* @return Returns new `ImmutableArray`
*/
asMutable(): ImmutableArray<T>;
/**
* Converts `ImmutableArray` to plain-old JavaScript
* @return Returns array
*/
toJS(): T[];
/**
* Converts `ImmutableArray` to plain-old JavaScript
* @param frozen Whether or not the resulting array should be frozen
* @return Returns array
*/
toJS(frozen: boolean): Readonly<T[]>;
}
type Many<T> = T | T[];
type NestedArray<T> = Many<T>;
type PropertyName = string | number | symbol;
type PropertyKey = string | number | symbol;
type MapCallback<T> = (value: T) => PropertyKey;
export type ImmutableArray<T> = T[] & IArray<T>;
export type ImmutableObject<T> = T & IObject<T>;
}
declare function BasicImmutable<T>(object: T[]): BasicImmutable.ImmutableArray<T>;
declare function BasicImmutable<T>(object: T): BasicImmutable.ImmutableObject<T>;
export = BasicImmutable;