typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
11 lines (8 loc) • 328 B
TypeScript
/// <reference path="../../../globals.d.ts" />
declare module goog.dom {
/**
* Enum of browser capabilities.
* @enum {boolean}
*/
enum BrowserFeature { CAN_ADD_NAME_OR_TYPE_ATTRIBUTES, CAN_USE_CHILDREN_ATTRIBUTE, CAN_USE_INNER_TEXT, CAN_USE_PARENT_ELEMENT_PROPERTY, INNER_HTML_NEEDS_SCOPED_ELEMENT }
}