Skip to content

Instantly share code, notes, and snippets.

@mohsen1
Created September 26, 2017 17:33
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 mohsen1/9ea09188b7873305cccf1993da824106 to your computer and use it in GitHub Desktop.
Save mohsen1/9ea09188b7873305cccf1993da824106 to your computer and use it in GitHub Desktop.
/**
* Create an input element
*/
function createInput(type: 'text', value: string): HTMLInputElement;
function createInput(type: 'checkbox', value: boolean): HTMLInputElement;
function createInput(type, value) {
// code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment