UNPKG

google-closure-library

Version:
23 lines (17 loc) 326 B
/** * @license * Copyright The Closure Library Authors. * SPDX-License-Identifier: Apache-2.0 */ /** * @fileoverview Simple struct for endpoints of a range. */ goog.provide('goog.dom.RangeEndpoint'); /** * Constants for selection endpoints. * @enum {number} */ goog.dom.RangeEndpoint = { START: 1, END: 0 };