isRef.d.ts 98 Bytes Edit Raw Blame History Permalink 1 2 3 4 export interface Ref<T> { current: T; } export declare function isRef(obj: unknown): boolean;