inet-core
Version:
iNet Core
45 lines (44 loc) • 1.11 kB
TypeScript
declare const _exports: {
/**
* @property {String}
* @readonly
* The version of the framework
* @type String Major[.Minor[.Patch[.Build[Release]]]]
*
*/
readonly version: string;
/**
* The date release the framework
* @property {String}
* @readonly
*/
readonly build_date: string;
/**
* @property {String} BLANK_IMAGE_URL
* URL to a 1x1 transparent gif image used by iNet to create inline icons with
* CSS background images.
*/
BLANK_IMAGE_URL: string;
} | ((w: any) => {
/**
* @property {String}
* @readonly
* The version of the framework
* @type String Major[.Minor[.Patch[.Build[Release]]]]
*
*/
readonly version: string;
/**
* The date release the framework
* @property {String}
* @readonly
*/
readonly build_date: string;
/**
* @property {String} BLANK_IMAGE_URL
* URL to a 1x1 transparent gif image used by iNet to create inline icons with
* CSS background images.
*/
BLANK_IMAGE_URL: string;
});
export = _exports;