Removed unused interface.

This commit is contained in:
Scott Hatcher 2015-07-14 09:29:51 -07:00
parent d910496ddc
commit b22932b2ef

View File

@ -55,25 +55,11 @@ declare module AngularFormly {
}
/**
* This is part of the built-in formlyConfig templateManipulator called ngModelAttrsTemplateManipulator.
* This allows you to keep your templates very small and add custom behavior on at the type or field level.
*
* see http://docs.angular-formly.com/docs/ngmodelattrs
*/
// interface INGModelAttrs {
// [key: string]: {
// attribute?: string;
// expresssion?: string;
// value?: string;
// }
// }
interface ITemplateManipulator {
(template: string | HTMLElement, options: Object, scope: ng.IScope): string | HTMLElement;
}
interface ITemplateManipulators {
preWrapper?: ITemplateManipulator[];
postWrapper?: ITemplateManipulator[];