Hacker News new | ask | show | jobs
by james-mcelwain 2085 days ago
No, TypeScript is compile time only. There's no runtime type info.
1 comments

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.
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 ..."