11 Matching Annotations
  1. Sep 2022
  2. Aug 2021
    1. The above works great. However, the problem comes when I want to use literal types for my legal values. In my code, I want to do that so I can make sure I define a "handler" for every legal value: const legalValues = <const>["a", "b", "c"]; // later on... // Because legalValues entries are literal types, // I get a compiler error if I forget to define any behaviors const behaviors: { [K in typeof legalValues[number]]: any } = { a: something, b: somethingElse, c: anotherThing };
  3. Jun 2021
  4. Mar 2021
  5. en.wikipedia.org en.wikipedia.org
  6. Feb 2021
  7. Sep 2020