Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Latest
variable usePreferAnyProp
import { usePreferAnyProp } from "https://deno.land/x/react_querybuilder@v7.5.2/packages/react-querybuilder/src/hooks/usePreferProp.ts";

For given default, prop, and context values, return the first provided of prop, context, and default, in that order.

type

(
def?: any,
prop?: any,
context?: any,
) => unknown