From a201be414abe3c2cd9e55944fa2e3597716ff5b6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C3=81lvaro=20Velad=20Galv=C3=A1n?= <alvaro.velad@mirada.tv>
Date: Tue, 9 Jun 2020 16:32:59 +0200
Subject: [PATCH] fix: export shaka.util.FairPlayUtils and
 shaka.util.BufferUtils (#2628)

@exportInterface is used by the extern generator, but ignored by the
compiler. @export should be used for shaka.util.FairPlayUtils and
shaka.util.BufferUtils.

Closes #2626 and #2627
---
 lib/util/buffer_utils.js   | 2 +-
 lib/util/fairplay_utils.js | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/util/buffer_utils.js b/lib/util/buffer_utils.js
index 9dd5563ca5..e5e96989e1 100644
--- a/lib/util/buffer_utils.js
+++ b/lib/util/buffer_utils.js
@@ -10,7 +10,7 @@ goog.require('shaka.util.Iterables');
 
 /**
  * @summary A set of BufferSource utility functions.
- * @exportInterface
+ * @export
  */
 shaka.util.BufferUtils = class {
   /**
diff --git a/lib/util/fairplay_utils.js b/lib/util/fairplay_utils.js
index c428f5fafb..752c8b6e16 100644
--- a/lib/util/fairplay_utils.js
+++ b/lib/util/fairplay_utils.js
@@ -12,7 +12,7 @@ goog.require('shaka.util.BufferUtils');
 
 /**
  * @summary A set of FairPlay utility functions.
- * @exportInterface
+ * @export
  */
 shaka.util.FairPlayUtils = class {
   /**