mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
12 lines
383 B
Text
12 lines
383 B
Text
---
|
|
source: crates/oxc_isolated_declarations/tests/mod.rs
|
|
input_file: crates/oxc_isolated_declarations/tests/fixtures/empty-export.ts
|
|
---
|
|
```
|
|
==================== .D.TS ====================
|
|
|
|
type A = string;
|
|
export declare function a(): A;
|
|
export declare const ShallowReactiveMarker: unique symbol;
|
|
export type ShallowReactive<T> = T & { [ShallowReactiveMarker]?: true };
|
|
export {};
|