cleanup: Fix nullability declarations

Cleanup imported from an internal Google migration process, courtesy
of Laura Harker.

Change-Id: I11de518eafe6008938589e5250bdcaf8151267e9
This commit is contained in:
Joey Parrish
2021-06-21 15:54:39 -07:00
parent 4c7767f6be
commit 38ce45dce5
24 changed files with 291 additions and 291 deletions
+2 -2
View File
@@ -22,7 +22,7 @@ shaka.cea.ICaptionDecoder = class {
* @param {!Uint8Array} userDataSeiMessage
* This is a User Data registered by Rec.ITU-T T.35 SEI message.
* It is described in sections D.1.6 and D.2.6 of Rec. ITU-T H.264 (06/2019).
* @param {!number} pts PTS when this packet was received, in seconds.
* @param {number} pts PTS when this packet was received, in seconds.
*/
extract(userDataSeiMessage, pts) {}
@@ -45,7 +45,7 @@ shaka.cea.ICaptionDecoder = class {
* Parsed Cue.
* @typedef {{
* cue: !shaka.text.Cue,
* stream: !string
* stream: string
* }}
*/
shaka.cea.ICaptionDecoder.ClosedCaption;