|
1 | 1 | // https://github.com/microsoft/TypeScript/issues/46036 |
2 | 2 | dictionary CryptoKeyPair { |
3 | | - member privateKey required=#true |
4 | | - member publicKey required=#true |
| 3 | + member privateKey required=#true |
| 4 | + member publicKey required=#true |
5 | 5 | } |
6 | 6 |
|
7 | 7 | interface CryptoKey { |
8 | | - property algorithm type=KeyAlgorithm |
9 | | - property usages { |
10 | | - type sequence { |
11 | | - type KeyUsage |
12 | | - } |
| 8 | + property algorithm type=KeyAlgorithm |
| 9 | + property usages { |
| 10 | + type sequence { |
| 11 | + type KeyUsage |
13 | 12 | } |
| 13 | + } |
14 | 14 | } |
15 | 15 |
|
16 | 16 | removals { |
17 | | - enum KeyFormat { |
18 | | - raw-private // No implementation as of 2025-09 |
19 | | - raw-public // No implementation as of 2025-09 |
20 | | - raw-secret // No implementation as of 2025-09 |
21 | | - raw-seed // No implementation as of 2025-09 |
22 | | - } |
| 17 | + enum KeyFormat { |
| 18 | + raw-private // No implementation as of 2025-09 |
| 19 | + raw-public // No implementation as of 2025-09 |
| 20 | + raw-secret // No implementation as of 2025-09 |
| 21 | + raw-seed // No implementation as of 2025-09 |
| 22 | + } |
23 | 23 |
|
24 | | - enum KeyUsage { |
25 | | - decapsulateBits // No implementation as of 2025-09 |
26 | | - decapsulateKey // No implementation as of 2025-09 |
27 | | - encapsulateBits // No implementation as of 2025-09 |
28 | | - encapsulateKey // No implementation as of 2025-09 |
29 | | - } |
| 24 | + enum KeyUsage { |
| 25 | + decapsulateBits // No implementation as of 2025-09 |
| 26 | + decapsulateKey // No implementation as of 2025-09 |
| 27 | + encapsulateBits // No implementation as of 2025-09 |
| 28 | + encapsulateKey // No implementation as of 2025-09 |
| 29 | + } |
30 | 30 |
|
31 | 31 |
|
32 | | - dictionary JsonWebKey { |
33 | | - member priv // No implementation as of 2025-09 |
34 | | - member pub // No implementation as of 2025-09 |
35 | | - } |
| 32 | + dictionary JsonWebKey { |
| 33 | + member priv // No implementation as of 2025-09 |
| 34 | + member pub // No implementation as of 2025-09 |
| 35 | + } |
36 | 36 | } |
0 commit comments