UNPKG

typescript-closure-tools

Version:

Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files

33 lines (26 loc) 986 B
/// <reference path="../../../globals.d.ts" /> /// <reference path="./buttonrenderer.d.ts" /> declare module goog.ui { class Css3ButtonRenderer extends Css3ButtonRenderer__Class { } /** Fake class which should be extended to avoid inheriting static properties */ class Css3ButtonRenderer__Class extends goog.ui.ButtonRenderer__Class { /** * Custom renderer for {@link goog.ui.Button}s. Css3 buttons can contain * almost arbitrary HTML content, will flow like inline elements, but can be * styled like block-level elements. * * @constructor * @extends {goog.ui.ButtonRenderer} * @final */ constructor(); } } declare module goog.ui.Css3ButtonRenderer { /** * Default CSS class to be applied to the root element of components rendered * by this renderer. * @type {string} */ var CSS_CLASS: string; }