Skip to content

Commit

Permalink
fix: export shaka.util.FairPlayUtils and shaka.util.BufferUtils (shak…
Browse files Browse the repository at this point in the history
…a-project#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 shaka-project#2626 and shaka-project#2627
  • Loading branch information
Álvaro Velad Galván authored Jun 9, 2020
1 parent 741424e commit a201be4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/util/buffer_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ goog.require('shaka.util.Iterables');

/**
* @summary A set of BufferSource utility functions.
* @exportInterface
* @export
*/
shaka.util.BufferUtils = class {
/**
Expand Down
2 changes: 1 addition & 1 deletion lib/util/fairplay_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ goog.require('shaka.util.BufferUtils');

/**
* @summary A set of FairPlay utility functions.
* @exportInterface
* @export
*/
shaka.util.FairPlayUtils = class {
/**
Expand Down

0 comments on commit a201be4

Please sign in to comment.