Imperatively add a value to the end of an array
(obj: X)
| 31 | export interface ArrayHelpers<T extends any[] = any[]> { |
| 32 | /** Imperatively add a value to the end of an array */ |
| 33 | push<X extends T[number] = T[number]>(obj: X): void; |
| 34 | /** Curried fn to add a value to the end of an array */ |
| 35 | handlePush<X extends T[number] = T[number]>(obj: X): () => void; |
| 36 | /** Imperatively swap two values in an array */ |
no outgoing calls