typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
18 lines (14 loc) • 627 B
TypeScript
/// <reference path="../../../globals.d.ts" />
/// <reference path="./result_interface.d.ts" />
declare module goog.result {
interface DependentResult extends goog.result.Result {
/**
*
* @return {!Array. } A list of Results which will affect
* the eventual value of this Result. The returned Results may themselves
* have parent results, which would be grandparents of this Result;
* grandparents (and any other ancestors) are not included in this list.
*/
getParentResults(): goog.result.Result[];
}
}