We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a32d05f commit 4de51feCopy full SHA for 4de51fe
types/index.d.ts
@@ -88,6 +88,8 @@ declare namespace Handlebars {
88
// TODO: replace Function with actual signature
89
export const decorators: { [name: string]: Function };
90
91
+ export const VERSION: string;
92
+
93
export function noConflict(): typeof Handlebars;
94
95
export class Exception {
types/test.ts
@@ -252,3 +252,7 @@ function testProtoAccessControlControlOptions() {
252
}
253
);
254
255
256
+function testHandlebarsVersion() {
257
+ let version: string = Handlebars.VERSION;
258
+}
0 commit comments