Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/third_party/closure/goog/ui/controlcontent.js
4049 views
1
/**
2
* @license
3
* Copyright The Closure Library Authors.
4
* SPDX-License-Identifier: Apache-2.0
5
*/
6
7
/**
8
* @fileoverview Type declaration for control content.
9
*/
10
goog.provide('goog.ui.ControlContent');
11
12
13
/**
14
* Type declaration for text caption or DOM structure to be used as the content
15
* of {@link goog.ui.Control}s.
16
* @typedef {string|Node|Array<!Node>|NodeList<!Node>}
17
*/
18
goog.ui.ControlContent;
19
20