From ea25e17d6fe6db27c8b403a0a35ffbf7c2af49dc Mon Sep 17 00:00:00 2001 From: Brian Zengel Date: Sun, 20 Oct 2013 20:46:00 -0400 Subject: [PATCH] added _.VERSION property --- lodash/lodash.d.ts | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index e483a7102e..8485bcd398 100644 --- a/lodash/lodash.d.ts +++ b/lodash/lodash.d.ts @@ -2934,16 +2934,21 @@ declare module _ { export function uniqueId(prefix?: string): string; /** - * By default, the template delimiters used by Lo-Dash are similar to those in embedded Ruby - * (ERB). Change the following template settings to use alternative delimiters. + * The semantic version number. **/ - export var templateSettings: TemplateSettings; + export var VERSION: string; /** * An object used to flag environments features. **/ export var support: Support; + /** + * By default, the template delimiters used by Lo-Dash are similar to those in embedded Ruby + * (ERB). Change the following template settings to use alternative delimiters. + **/ + export var templateSettings: TemplateSettings; + /* ********** * Chaining * *********** */