typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
39 lines (33 loc) • 1.82 kB
TypeScript
/// <reference path="../../../globals.d.ts" />
/// <reference path="./strokeandfillelement.d.ts" />
/// <reference path="./abstractgraphics.d.ts" />
/// <reference path="./stroke.d.ts" />
/// <reference path="./fill.d.ts" />
/// <reference path="./path.d.ts" />
declare module goog.graphics {
class PathElement extends PathElement__Class { }
/** Fake class which should be extended to avoid inheriting static properties */
class PathElement__Class extends goog.graphics.StrokeAndFillElement__Class {
/**
* Interface for a graphics path element.
* You should not construct objects from this constructor. The graphics
* will return an implementation of this interface for you.
* @param {Element} element The DOM element to wrap.
* @param {goog.graphics.AbstractGraphics} graphics The graphics creating
* this element.
* @param {goog.graphics.Stroke?} stroke The stroke to use for this element.
* @param {goog.graphics.Fill?} fill The fill to use for this element.
* @constructor
* @extends {goog.graphics.StrokeAndFillElement}
* @deprecated goog.graphics is deprecated. It existed to abstract over browser
* differences before the canvas tag was widely supported. See
* http://en.wikipedia.org/wiki/Canvas_element for details.
*/
constructor(element: Element, graphics: goog.graphics.AbstractGraphics, stroke: goog.graphics.Stroke, fill: goog.graphics.Fill);
/**
* Update the underlying path.
* @param {!goog.graphics.Path} path The path object to draw.
*/
setPath(path: goog.graphics.Path): void;
}
}