|
@@ -89,6 +89,7 @@ declare global {
|
|
|
const onUnmounted: typeof import('vue')['onUnmounted']
|
|
const onUnmounted: typeof import('vue')['onUnmounted']
|
|
|
const onUpdated: typeof import('vue')['onUpdated']
|
|
const onUpdated: typeof import('vue')['onUpdated']
|
|
|
const onWatcherCleanup: typeof import('vue')['onWatcherCleanup']
|
|
const onWatcherCleanup: typeof import('vue')['onWatcherCleanup']
|
|
|
|
|
+ const parseHTMLToNodes: typeof import('./utils/richText')['default']
|
|
|
const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
|
|
const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
|
|
|
const provide: typeof import('vue')['provide']
|
|
const provide: typeof import('vue')['provide']
|
|
|
const provideLocal: typeof import('@vueuse/core')['provideLocal']
|
|
const provideLocal: typeof import('@vueuse/core')['provideLocal']
|
|
@@ -105,9 +106,11 @@ declare global {
|
|
|
const refDefault: typeof import('@vueuse/core')['refDefault']
|
|
const refDefault: typeof import('@vueuse/core')['refDefault']
|
|
|
const refThrottled: typeof import('@vueuse/core')['refThrottled']
|
|
const refThrottled: typeof import('@vueuse/core')['refThrottled']
|
|
|
const refWithControl: typeof import('@vueuse/core')['refWithControl']
|
|
const refWithControl: typeof import('@vueuse/core')['refWithControl']
|
|
|
|
|
+ const repairRichText: typeof import('./utils/richText')['repairRichText']
|
|
|
const resolveComponent: typeof import('vue')['resolveComponent']
|
|
const resolveComponent: typeof import('vue')['resolveComponent']
|
|
|
const resolveRef: typeof import('@vueuse/core')['resolveRef']
|
|
const resolveRef: typeof import('@vueuse/core')['resolveRef']
|
|
|
const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
|
|
const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
|
|
|
|
|
+ const sanitizeRichTextImages: typeof import('./utils/richText')['sanitizeRichTextImages']
|
|
|
const shallowReactive: typeof import('vue')['shallowReactive']
|
|
const shallowReactive: typeof import('vue')['shallowReactive']
|
|
|
const shallowReadonly: typeof import('vue')['shallowReadonly']
|
|
const shallowReadonly: typeof import('vue')['shallowReadonly']
|
|
|
const shallowRef: typeof import('vue')['shallowRef']
|
|
const shallowRef: typeof import('vue')['shallowRef']
|
|
@@ -424,6 +427,7 @@ declare module 'vue' {
|
|
|
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
|
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
|
|
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
|
|
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
|
|
|
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
|
|
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
|
|
|
|
|
+ readonly sanitizeRichTextImages: UnwrapRef<typeof import('./utils/richText')['sanitizeRichTextImages']>
|
|
|
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
|
|
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
|
|
|
readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
|
|
readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
|
|
|
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
|
|
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
|