chore(core): add MaybeRefOrGetter type

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
braks
2023-04-11 20:28:02 +02:00
committed by Braks
parent 3ca4b4fdcb
commit 2a5af98182
+3
View File
@@ -0,0 +1,3 @@
import type { MaybeRef } from '@vueuse/core'
export type MaybeRefOrGetter<T> = MaybeRef<T> | (() => T)