mirror of https://github.com/vuejs/core.git
chore(types): mark more internal component instance properties
This commit is contained in:
parent
001184e6bb
commit
d45cbfcdfb
|
@ -303,10 +303,12 @@ export interface ComponentInternalInstance {
|
||||||
inheritAttrs?: boolean
|
inheritAttrs?: boolean
|
||||||
/**
|
/**
|
||||||
* is custom element?
|
* is custom element?
|
||||||
|
* @internal
|
||||||
*/
|
*/
|
||||||
isCE?: boolean
|
isCE?: boolean
|
||||||
/**
|
/**
|
||||||
* custom element specific HMR method
|
* custom element specific HMR method
|
||||||
|
* @internal
|
||||||
*/
|
*/
|
||||||
ceReload?: (newStyles?: string[]) => void
|
ceReload?: (newStyles?: string[]) => void
|
||||||
|
|
||||||
|
@ -448,10 +450,12 @@ export interface ComponentInternalInstance {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For caching bound $forceUpdate on public proxy access
|
* For caching bound $forceUpdate on public proxy access
|
||||||
|
* @internal
|
||||||
*/
|
*/
|
||||||
f?: () => void
|
f?: () => void
|
||||||
/**
|
/**
|
||||||
* For caching bound $nextTick on public proxy access
|
* For caching bound $nextTick on public proxy access
|
||||||
|
* @internal
|
||||||
*/
|
*/
|
||||||
n?: () => Promise<void>
|
n?: () => Promise<void>
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue