chore: fix dts

This commit is contained in:
Evan You 2021-04-08 17:15:02 -04:00
parent 3db29eb773
commit d71c488540
2 changed files with 3 additions and 3 deletions

View File

@ -343,9 +343,6 @@ const deprecationData: Record<DeprecationTypes, DeprecationData> = {
const instanceWarned: Record<string, true> = Object.create(null)
const warnCount: Record<string, number> = Object.create(null)
/**
* @internal
*/
export function warnDeprecation(key: DeprecationTypes, ...args: any[]) {
if (!__DEV__) {
return

View File

@ -297,6 +297,9 @@ const _compatUtils = {
softAssertCompatEnabled
}
/**
* @internal only exposed in compat builds.
*/
export const compatUtils = (__COMPAT__
? _compatUtils
: null) as typeof _compatUtils