mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
10 lines
349 B
Text
10 lines
349 B
Text
---
|
|
source: crates/oxc_isolated_declarations/tests/mod.rs
|
|
input_file: crates/oxc_isolated_declarations/tests/fixtures/function-overloads.ts
|
|
---
|
|
==================== .D.TS ====================
|
|
|
|
declare function a(a: number): number;
|
|
declare function a(a: string): string;
|
|
declare function b(a: number): number;
|
|
declare function b(a: string): string;
|