mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
8 lines
188 B
TypeScript
8 lines
188 B
TypeScript
type A = string;
|
|
export function a(): A {
|
|
return ""
|
|
}
|
|
|
|
export declare const ShallowReactiveMarker: unique symbol
|
|
|
|
export type ShallowReactive<T> = T & { [ShallowReactiveMarker]?: true }
|