refactor(runtime-core): add @internal for instance.proxy (#1849)

This commit is contained in:
Pick 2020-08-18 23:12:26 +08:00 committed by GitHub
parent 6ea8409a9a
commit 4d51be73d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
/**