mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
25 lines
449 B
Text
25 lines
449 B
Text
---
|
|
source: crates/oxc_isolated_declarations/tests/mod.rs
|
|
input_file: crates/oxc_isolated_declarations/tests/fixtures/signatures.ts
|
|
---
|
|
==================== .D.TS ====================
|
|
|
|
export interface X {
|
|
set value(_: string);
|
|
}
|
|
export type A = {
|
|
set value({ a, b, c }: {
|
|
a: string;
|
|
b: string;
|
|
c: string;
|
|
});
|
|
get value(): {
|
|
a: string;
|
|
b: string;
|
|
c: string;
|
|
};
|
|
};
|
|
export interface I {
|
|
set value(_: string);
|
|
get value(): string;
|
|
}
|