added _.VERSION property

This commit is contained in:
Brian Zengel
2013-10-20 20:46:00 -04:00
parent 2ef0b52e23
commit ea25e17d6f

11
lodash/lodash.d.ts vendored
View File

@@ -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 *
*********** */