From 4d51be73d3d4619613bb0df3c53d463df2fc6fd9 Mon Sep 17 00:00:00 2001 From: Pick Date: Tue, 18 Aug 2020 23:12:26 +0800 Subject: [PATCH] refactor(runtime-core): add @internal for instance.proxy (#1849) --- packages/runtime-core/src/component.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/runtime-core/src/component.ts b/packages/runtime-core/src/component.ts index 12eaa76bc93..ee9ae1be5a4 100644 --- a/packages/runtime-core/src/component.ts +++ b/packages/runtime-core/src/component.ts @@ -225,7 +225,10 @@ export interface ComponentInternalInstance { // the rest are only for stateful components --------------------------------- - // main proxy that serves as the public instance (`this`) + /** + * main proxy that serves as the public instance (`this`) + * @internal + */ proxy: ComponentPublicInstance | null /**