TypeScript中的类型安全`as const`

huangapple go评论95阅读模式
英文:

Type safe `as const` with Typescript

问题

当我像这样定义一个对象时,即使对象中的键不存在,它也会接受任何 string 作为对象的键。

我想要一种方式,在保持对象内容的类型安全性(如 myKey: {...})的同时,接收类似 Property 'x' doesn't exist on FIELD_DEFS 的错误提示。

  1. export const FIELD_DEFS: {
  2. [fieldKey: string]: FieldObj;
  3. } = {
  4. myKey: { ... }
  5. };

作为替代,我可以这样做:

  1. export const FIELD_DEFS = {
  2. myKey: { ... } satisfies FieldObj
  3. } as const

但这种方式更冗长,而且在这种情况下 FIELD_DEFS 相当大。

英文:

When I define an object like this, it accepts any string as a key to the object even if it does not exist.

I would like some sort of way to receive an error like Property 'x' doesn't exist on FIELD_DEFS while maintaining type safety of the contents of the boject such as myKey: {...}

  1. export const FIELD_DEFS: {
  2. [fieldKey: string]: FieldObj;
  3. } = {
  4. myKey: { ... }
  5. };

As an alternate I can do:

  1. export const FIELD_DEFS = {
  2. myKey: { ... } satisfies FieldObj
  3. } as const

But it's more verbose and in this case FIELD_DEFS is quite large

答案1

得分: 2

不要使用 satisfies 每个字段,可以与 const assertion 结合使用:

  1. type FieldObj= {
  2. name: string
  3. }
  4. const FIELD_DEFS = {
  5. myKey: {
  6. name: 'string'
  7. }
  8. } as const satisfies Record<string, FieldObj>
英文:

Instead of using satisfies per field, you can combine it with const assertion:

  1. type FieldObj= {
  2. name: string
  3. }
  4. const FIELD_DEFS = {
  5. myKey: {
  6. name: &#39;string&#39;
  7. }
  8. } as const satisfies Record&lt;string, FieldObj&gt;

huangapple
  • 本文由 发表于 2023年6月9日 01:21:55
  • 转载请务必保留本文链接:https://go.coder-hub.com/76434290.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定