oxc/crates/oxc_isolated_declarations/tests/fixtures/function-overloads.ts

7 lines
No EOL
158 B
TypeScript

function a(a: number): number;
function a(a: string): string;
function a(a: any): any {}
function b(a: number): number {};
function b(a: string): string {};