import { Ref } from 'vue' export function refValueIsUndefined(ref: Ref): ref is Ref { return ref.value === undefined } export function refValueIsDefined(ref: Ref): ref is Ref { return ref.value !== undefined }