Skip to content

Commit d71c488

Browse files
committed
chore: fix dts
1 parent 3db29eb commit d71c488

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/runtime-core/src/compat/deprecations.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,9 +343,6 @@ const deprecationData: Record<DeprecationTypes, DeprecationData> = {
343343
const instanceWarned: Record<string, true> = Object.create(null)
344344
const warnCount: Record<string, number> = Object.create(null)
345345

346-
/**
347-
* @internal
348-
*/
349346
export function warnDeprecation(key: DeprecationTypes, ...args: any[]) {
350347
if (!__DEV__) {
351348
return

packages/runtime-core/src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,9 @@ const _compatUtils = {
297297
softAssertCompatEnabled
298298
}
299299

300+
/**
301+
* @internal only exposed in compat builds.
302+
*/
300303
export const compatUtils = (__COMPAT__
301304
? _compatUtils
302305
: null) as typeof _compatUtils

0 commit comments

Comments
 (0)