mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-11 19:35:32 +00:00
9 lines
374 B
TypeScript
9 lines
374 B
TypeScript
/// <reference path="./version.inc.ts" />
|
|
|
|
// Aliases the namespaced type with the non-namespaced module export.
|
|
declare let KEYMAN_VERSION: typeof com.keyman.KEYMAN_VERSION;
|
|
|
|
// Add all namespaces defined here to the global scope:
|
|
if (typeof module != 'undefined' && typeof module.exports != 'undefined') {
|
|
module.exports['KEYMAN_VERSION'] = com.keyman.KEYMAN_VERSION;
|
|
}
|