JSFiddle - React, Tailwind, and code Playground

by andres_314

TypeScript

const OPTION_1 = 1;
const OPTION_2 = 2;

type OPTION = typeof OPTION_1 | typeof OPTION_2
  

const test = (option:OPTION)=>{alert(option)}

test(4)