(obj: any)
| 5 | export type UseArrayIncludesComparatorFn<T, V> = ((element: T, value: V, index: number, array: MaybeRefOrGetter<T>[]) => boolean) |
| 6 | |
| 7 | function isArrayIncludesOptions<T, V>(obj: any): obj is UseArrayIncludesOptions<T, V> { |
| 8 | return isObject(obj) && containsProp(obj, 'formIndex', 'comparator') |
| 9 | } |
| 10 | |
| 11 | export interface UseArrayIncludesOptions<T, V> { |
| 12 | fromIndex?: number |
no test coverage detected