typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
40 lines (32 loc) • 1.37 kB
TypeScript
/// <reference path="../../../globals.d.ts" />
/// <reference path="./containerrenderer.d.ts" />
/// <reference path="./menu.d.ts" />
declare module goog.ui {
class MenuRenderer extends MenuRenderer__Class { }
/** Fake class which should be extended to avoid inheriting static properties */
class MenuRenderer__Class extends goog.ui.ContainerRenderer__Class {
/**
* Default renderer for {@link goog.ui.Menu}s, based on {@link
* goog.ui.ContainerRenderer}.
* @param {string=} opt_ariaRole Optional ARIA role used for the element.
* @constructor
* @extends {goog.ui.ContainerRenderer}
*/
constructor(opt_ariaRole?: string);
/**
* Returns whether the given element is contained in the menu's DOM.
* @param {goog.ui.Menu} menu The menu to test.
* @param {Element} element The element to test.
* @return {boolean} Whether the given element is contained in the menu.
*/
containsElement(menu: goog.ui.Menu, element: Element): boolean;
}
}
declare module goog.ui.MenuRenderer {
/**
* Default CSS class to be applied to the root element of toolbars rendered
* by this renderer.
* @type {string}
*/
var CSS_CLASS: string;
}