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) • 636 B
TypeScript
/// <reference path="../../../globals.d.ts" />
declare module goog.userAgentTestUtil {
/**
* Rerun the initialization code to set all of the goog.userAgent constants.
* @suppress {accessControls}
*/
function reinitializeUserAgent(): void;
/**
* Browser definitions.
* @enum {string}
*/
enum UserAgents { GECKO, IE, OPERA, WEBKIT }
/**
* Return whether a given user agent has been detected.
* @param {string} agent Value in UserAgents.
* @return {boolean} Whether the user agent has been detected.
*/
function getUserAgentDetected(agent: string): boolean;
}