oxc/crates/oxc_isolated_declarations/tests/fixtures/empty-export.ts

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 }