export type _pushArray = (sArray: any[], array: any[]) => void; export type _pushDistinct = (sArray: any[], obj: any) => void; export type _pushDistinctArray = (sArray: any[], array: any[]) => void; type _array = { pushArray: _pushArray; pushDistinct: _pushDistinct; pushDistinctArray: _pushDistinctArray; } export default _array;