add missing semicolon in ICloneAttachFunction

This commit is contained in:
jraymakers
2014-01-07 22:22:33 -08:00
parent ad7b08921b
commit 75357ab810

View File

@@ -539,7 +539,7 @@ declare module ng {
interface ICloneAttachFunction {
// Let's hint but not force cloneAttachFn's signature
(clonedElement?: JQuery, scope?: IScope): any
(clonedElement?: JQuery, scope?: IScope): any;
}
interface ITemplateLinkingFunction {