export type CallBackFilter<T> = (
  value: T,
  index?: number,
  collection?: T[]
) => Promise<boolean>;