Files
shaka-player/lib/routing/node.js
T
Joey Parrish f539147d48 fix: Correct license headers in compiled output
This fixes all the license headers in the main library, which corrects
the appearance of the main license in the compiled output.

It seems that the `!` in the header forces the compiler to keep it in
the output.  I believe older compiler releases did this purely based
on `@license`.

Issue #2638

Change-Id: I7f0e918caad10c9af689c9d07672b7fe9be7b2f3
2020-06-09 16:05:09 -07:00

24 lines
516 B
JavaScript

/*! @license
* Shaka Player
* Copyright 2016 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
goog.provide('shaka.routing.Node');
/**
* @typedef {{
* name: string
* }}
*
* @description
* A node is the one of the two fundamental units used to build graphs. It
* represents the position within a graph.
*
* @property {string} name
* A human-readable name for this node. While this should not be used in
* production, the name helps identify nodes when debugging.
*/
shaka.routing.Node;