typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
24 lines (19 loc) • 961 B
TypeScript
/// <reference path="../../../globals.d.ts" />
/// <reference path="../structs/prioritypool.d.ts" />
/// <reference path="../structs/map.d.ts" />
declare module goog.net {
class XhrIoPool extends XhrIoPool__Class { }
/** Fake class which should be extended to avoid inheriting static properties */
class XhrIoPool__Class extends goog.structs.PriorityPool__Class<any> {
/**
* A pool of XhrIo objects.
* @param {goog.structs.Map=} opt_headers Map of default headers to add to every
* request.
* @param {number=} opt_minCount Minimum number of objects (Default: 1).
* @param {number=} opt_maxCount Maximum number of objects (Default: 10).
* @constructor
* @extends {goog.structs.PriorityPool}
*/
constructor(opt_headers?: goog.structs.Map<any, any>, opt_minCount?: number, opt_maxCount?: number);
}
}