Skip to content

Instantly share code, notes, and snippets.

@pointofpresence
Last active March 31, 2024 18:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pointofpresence/c00c65a87df53dce1541dc482ac431a7 to your computer and use it in GitHub Desktop.
Save pointofpresence/c00c65a87df53dce1541dc482ac431a7 to your computer and use it in GitHub Desktop.
TS: Перегрузка функций
// Overloads
function conv(a: string): number;
function conv(a: number): string;
function conv(a: string | number): string | number {
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment