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) • 418 B
TypeScript
/// <reference path="../../../globals.d.ts" />
/// <reference path="./entry.d.ts" />
declare module goog.fs {
interface FileSystem {
/**
* @return {string} The name of the filesystem.
*/
getName(): string;
/**
* @return {!goog.fs.DirectoryEntry} The root directory of the filesystem.
*/
getRoot(): goog.fs.DirectoryEntry;
}
}