Add unregister functions to handlebars.d.ts

This commit is contained in:
gscshoyru
2015-12-02 12:19:39 -05:00
parent 715df76441
commit f91008d4cd
+2
View File
@@ -7,6 +7,8 @@
declare module Handlebars {
export function registerHelper(name: string, fn: Function, inverse?: boolean): void;
export function registerPartial(name: string, str: any): void;
export function unregisterHelper(name: string): void;
export function unregisterPartial(name: string): void;
export function K(): void;
export function createFrame(object: any): any;
export function Exception(message: string): void;