We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 449e450 commit 8002736Copy full SHA for 8002736
packages/documentation/copy/en/handbook-v2/Type Manipulation/Keyof Type Operator.md
@@ -7,7 +7,8 @@ oneline: "Using the keyof operator in type contexts."
7
8
## The `keyof` type operator
9
10
-The `keyof` operator takes an object type and produces a string or numeric literal union of its keys:
+The `keyof` operator takes an object type and produces a string or numeric literal union of its keys.
11
+The following type P is the same type as "x" | "y":
12
13
```ts twoslash
14
type Point = { x: number; y: number };
0 commit comments