typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
12 lines (9 loc) • 319 B
TypeScript
/// <reference path="../../../globals.d.ts" />
declare module goog.ui {
/**
* Type declaration for text caption or DOM structure to be used as the content
* of {@link goog.ui.Control}s.
* @typedef {string|Node|Array.<Node>|NodeList}
*/
type ControlContent = string|Node|Node[]|NodeList;
}