(value?: unknown)
| 98 | export function shallowRef<T = any>(): ShallowRef<T | undefined> |
| 99 | /*@__NO_SIDE_EFFECTS__*/ |
| 100 | export function shallowRef(value?: unknown) { |
| 101 | return createRef(value, true) |
| 102 | } |
| 103 | |
| 104 | function createRef(rawValue: unknown, shallow: boolean) { |
| 105 | if (isRef(rawValue)) { |