Skip to content

Commit bf934f6

Browse files
committed
fix: Fix CryptoKey definition (#9686)
Fixes #9685
1 parent 688c61e commit bf934f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

externs/shaka/manifest.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ shaka.extern.CreateSegmentIndexFunction;
254254
* @typedef {{
255255
* bitsKey: number,
256256
* blockCipherMode: string,
257-
* cryptoKey: (webCrypto.CryptoKey|undefined),
257+
* cryptoKey: (CryptoKey|undefined),
258258
* fetchKey: (shaka.extern.CreateSegmentIndexFunction|undefined),
259259
* iv: (!Uint8Array|undefined),
260260
* firstMediaSequenceNumber: number
@@ -267,7 +267,7 @@ shaka.extern.CreateSegmentIndexFunction;
267267
* The number of the bit key (eg: 128, 256).
268268
* @property {string} blockCipherMode
269269
* The block cipher mode of operation. Possible values: 'CTR', 'CBC' or 'GCM'.
270-
* @property {webCrypto.CryptoKey|undefined} cryptoKey
270+
* @property {CryptoKey|undefined} cryptoKey
271271
* Web crypto key object of the AES key. If unset, the "fetchKey"
272272
* property should be provided.
273273
* @property {shaka.extern.FetchCryptoKeysFunction|undefined} fetchKey

0 commit comments

Comments
 (0)