|
@@ -24,12 +24,14 @@ declare global {
|
|
|
const getActivePinia: typeof import('pinia')['getActivePinia']
|
|
|
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
|
|
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
|
|
+ const getCurrentWatcher: typeof import('vue')['getCurrentWatcher']
|
|
|
const h: typeof import('vue')['h']
|
|
|
const inject: typeof import('vue')['inject']
|
|
|
const isProxy: typeof import('vue')['isProxy']
|
|
|
const isReactive: typeof import('vue')['isReactive']
|
|
|
const isReadonly: typeof import('vue')['isReadonly']
|
|
|
const isRef: typeof import('vue')['isRef']
|
|
|
+ const isShallow: typeof import('vue')['isShallow']
|
|
|
const mapActions: typeof import('pinia')['mapActions']
|
|
|
const mapGetters: typeof import('pinia')['mapGetters']
|
|
|
const mapState: typeof import('pinia')['mapState']
|
|
@@ -88,7 +90,7 @@ declare global {
|
|
|
// for type re-export
|
|
|
declare global {
|
|
|
// @ts-ignore
|
|
|
- export type { Component, Slot, Slots, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
|
|
|
+ export type { Component, Slot, Slots, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, ShallowRef, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
|
|
|
import('vue')
|
|
|
}
|
|
|
|
|
@@ -115,12 +117,14 @@ declare module 'vue' {
|
|
|
readonly getActivePinia: UnwrapRef<typeof import('pinia')['getActivePinia']>
|
|
|
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
|
|
|
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
|
|
|
+ readonly getCurrentWatcher: UnwrapRef<typeof import('vue')['getCurrentWatcher']>
|
|
|
readonly h: UnwrapRef<typeof import('vue')['h']>
|
|
|
readonly inject: UnwrapRef<typeof import('vue')['inject']>
|
|
|
readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
|
|
|
readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
|
|
|
readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
|
|
|
readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
|
|
|
+ readonly isShallow: UnwrapRef<typeof import('vue')['isShallow']>
|
|
|
readonly mapActions: UnwrapRef<typeof import('pinia')['mapActions']>
|
|
|
readonly mapGetters: UnwrapRef<typeof import('pinia')['mapGetters']>
|
|
|
readonly mapState: UnwrapRef<typeof import('pinia')['mapState']>
|