oxc/crates/oxc_isolated_declarations/tests/snapshots/function-overloads.snap

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;