We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d519a9 commit 6da9c7eCopy full SHA for 6da9c7e
packages/runtime-core/src/index.ts
@@ -361,7 +361,7 @@ export const ssrUtils = (__SSR__ ? _ssrUtils : null) as typeof _ssrUtils
361
362
// 2.x COMPAT ------------------------------------------------------------------
363
364
-export { DeprecationTypes } from './compat/compatConfig'
+import { DeprecationTypes as _DeprecationTypes } from './compat/compatConfig'
365
export type { CompatVue } from './compat/global'
366
export type { LegacyConfig } from './compat/globalConfig'
367
@@ -393,3 +393,7 @@ const _compatUtils = {
393
export const compatUtils = (
394
__COMPAT__ ? _compatUtils : null
395
) as typeof _compatUtils
396
+
397
+export const DeprecationTypes = (
398
+ __COMPAT__ ? _DeprecationTypes : null
399
+) as typeof _DeprecationTypes
0 commit comments