UNPKG

@cran/lib.vue.ref

Version:

Vue Reactivity Extensions

9 lines (8 loc) 349 B
import { type ArrayPredicate } from "./ArrayPredicate"; import { type MaybeWrapped } from "../utility"; /** * @since 0.0.1 * @category Array * @inheritdoc Array#findLast */ export declare function useFindLast<T>(values: MaybeWrapped<Array<MaybeWrapped<T>>>, predicate: ArrayPredicate<T>): import("vue").ComputedRef<MaybeWrapped<T> | undefined>;