diff --git a/packages/documentation/copy/en/reference/Utility Types.md b/packages/documentation/copy/en/reference/Utility Types.md index dc4800115283..b395110703b5 100644 --- a/packages/documentation/copy/en/reference/Utility Types.md +++ b/packages/documentation/copy/en/reference/Utility Types.md @@ -140,13 +140,13 @@ Constructs an object type whose property keys are `Keys` and whose property valu ##### Example ```ts twoslash +type CatName = "miffy" | "boris" | "mordred"; + interface CatInfo { age: number; breed: string; } -type CatName = "miffy" | "boris" | "mordred"; - const cats: Record = { miffy: { age: 10, breed: "Persian" }, boris: { age: 5, breed: "Maine Coon" },