typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
19 lines (14 loc) • 395 B
TypeScript
/// <reference path="../../../globals.d.ts" />
declare module goog.disposable {
interface IDisposable {
/**
* Disposes of the object and its resources.
* @return {void} Nothing.
*/
dispose(): void;
/**
* @return {boolean} Whether the object has been disposed of.
*/
isDisposed(): boolean;
}
}