File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export const SSR_RENDER_SUSPENSE: unique symbol = Symbol(`ssrRenderSuspense`)
28
28
export const SSR_GET_DIRECTIVE_PROPS : unique symbol =
29
29
Symbol ( `ssrGetDirectiveProps` )
30
30
31
- export const ssrHelpers = {
31
+ export const ssrHelpers : Record < symbol , string > = {
32
32
[ SSR_INTERPOLATE ] : `ssrInterpolate` ,
33
33
[ SSR_RENDER_VNODE ] : `ssrRenderVNode` ,
34
34
[ SSR_RENDER_COMPONENT ] : `ssrRenderComponent` ,
Original file line number Diff line number Diff line change @@ -38,7 +38,9 @@ export class ComputedRefImpl<T> {
38
38
public readonly effect : ReactiveEffect < T >
39
39
40
40
public readonly __v_isRef = true
41
- public readonly [ ReactiveFlags . IS_READONLY ] : boolean = false
41
+ // TODO isolatedDeclarations
42
+ // public readonly [ReactiveFlags.IS_READONLY]: boolean = false
43
+ public readonly __v_isReadonly : boolean = false
42
44
43
45
public _cacheable : boolean
44
46
Original file line number Diff line number Diff line change @@ -66,8 +66,8 @@ export type UnwrapNestedRefs<T> = T extends Ref ? T : UnwrapRefSimple<T>
66
66
67
67
declare const ReactiveMarkerSymbol : unique symbol
68
68
69
- export declare class ReactiveMarker {
70
- private [ ReactiveMarkerSymbol ] ?: void
69
+ export interface ReactiveMarker {
70
+ [ ReactiveMarkerSymbol ] ?: void
71
71
}
72
72
73
73
export type Reactive < T > = UnwrapNestedRefs < T > &
You can’t perform that action at this time.
0 commit comments