UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

7 lines (6 loc) 258 B
import type { Path } from '../../types'; export type UseDataValueReturn<Value> = Value | undefined; /** * Provides a path-scoped form data value subscription. */ export default function useDataValue<Value = unknown>(path: Path): UseDataValueReturn<Value>;