Function ngModelDirective
- ngModelDirective($rootScope): {
compile: ((element: JQLite) => {
post: ((scope: any, element: any, _attr: any, ctrls: any) => void);
pre: ((scope: any, _element: any, attr: any, ctrls: any) => void);
});
controller: typeof NgModelController;
priority: number;
require: string[];
restrict: string;
} Returns {
compile: ((element: JQLite) => {
post: ((scope: any, element: any, _attr: any, ctrls: any) => void);
pre: ((scope: any, _element: any, attr: any, ctrls: any) => void);
});
controller: typeof NgModelController;
priority: number;
require: string[];
restrict: string;
}
compile: ((element: JQLite) => {
post: ((scope: any, element: any, _attr: any, ctrls: any) => void);
pre: ((scope: any, _element: any, attr: any, ctrls: any) => void);
})
- (element): {
post: ((scope: any, element: any, _attr: any, ctrls: any) => void);
pre: ((scope: any, _element: any, attr: any, ctrls: any) => void);
} Returns {
post: ((scope: any, element: any, _attr: any, ctrls: any) => void);
pre: ((scope: any, _element: any, attr: any, ctrls: any) => void);
}
post: ((scope: any, element: any, _attr: any, ctrls: any) => void)
- (scope, element, _attr, ctrls): void
Parameters
- scope: any
- element: any
- _attr: any
- ctrls: any
Returns void
pre: ((scope: any, _element: any, attr: any, ctrls: any) => void)
- (scope, _element, attr, ctrls): void
Parameters
- scope: any
- _element: any
- attr: any
- ctrls: any
Returns void
priority: number
require: string[]
restrict: string
Properties