resolveUnref.d.ts 163 B

12345
  1. import type { MaybeComputedRef } from './types';
  2. /**
  3. * Get the value of value/ref/getter.
  4. */
  5. export declare function resolveUnref<T>(r: MaybeComputedRef<T>): T;