typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
20 lines (15 loc) • 671 B
TypeScript
/// <reference path="../../../globals.d.ts" />
/// <reference path="./abstractrange.d.ts" />
declare module goog.dom {
class AbstractMultiRange extends AbstractMultiRange__Class { }
/** Fake class which should be extended to avoid inheriting static properties */
class AbstractMultiRange__Class extends goog.dom.AbstractRange__Class {
/**
* Creates a new multi range with no properties. Do not use this
* constructor: use one of the goog.dom.Range.createFrom* methods instead.
* @constructor
* @extends {goog.dom.AbstractRange}
*/
constructor();
}
}