Hacker News new | ask | show | jobs
by whatshisface 2093 days ago
The parent comment is saying that if you write the string twice, you can get the compiler to check #1 and the runtime to use #2.
1 comments

Not exactly (there is no duplication), a string constant in typescript is it's own type:

  const sql = 'SELECT ...';
  type SQL = typeof sql; 
  // type SQL = "SELECT ..."