Skip to content

Instantly share code, notes, and snippets.

@rexpan
Created September 28, 2017 03:46
Show Gist options
  • Select an option

  • Save rexpan/73bf17538add997cfec3ac010b1dbe38 to your computer and use it in GitHub Desktop.

Select an option

Save rexpan/73bf17538add997cfec3ac010b1dbe38 to your computer and use it in GitHub Desktop.
Typescript tips
function createInput(type: 'text' , value: string ): HTMLInputElement;
function createInput(type: 'checkbox', value: boolean): HTMLInputElement;
function createInput(type, value) {
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment