Update win.js to include the Template class

This commit is contained in:
Aaron
2013-10-02 11:25:04 -05:00
parent 856043d464
commit dbcb92dc96
+6 -2
View File
@@ -56,10 +56,14 @@ declare module WinJS {
public isDeclarativeControlContainer: boolean;
public bindingInitializer: any;
constructor(element: HTMLElement, options?: any);
public render(dataContext: any, container?: HTMLElement): WinJS.Promise<any>;
constructor(element: HTMLElement, options?: any);
public render: {
(dataContext: any, container?: HTMLElement): WinJS.Promise<HTMLElement>;
value(href: string, dataContext: any, container?: HTMLElement): WinJS.Promise<HTMLElement>;
};
public renderItem(item: any, recycled?: HTMLElement);
}
}
module Namespace {