typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
29 lines (24 loc) • 987 B
TypeScript
/// <reference path="../../../globals.d.ts" />
declare module goog.userAgent.picasa {
/**
* Whether we detect the user has Picasa installed.
* @type {boolean}
*/
var HAS_PICASA: boolean;
/**
* The installed version of Picasa. If Picasa is detected, this means it is
* version 2 or later. The precise version number is not yet available to the
* browser, this is a placeholder for later versions of Picasa.
* @type {string}
*/
var VERSION: string;
/**
* Whether the installed Picasa version is as new or newer than a given version.
* This is not yet relevant, we can't detect the true Picasa version number yet,
* but this may be possible in future Picasa releases.
* @param {string} version The version to check.
* @return {boolean} Whether the installed Picasa version is as new or newer
* than a given version.
*/
function isVersion(version: string): boolean;
}