- optionDirective($interpolate): {
priority: number;
restrict: string;
compile(element: any, attr: any): ((scope: any, element: any, attr: any) => void);
} Returns {
priority: number;
restrict: string;
compile(element: any, attr: any): ((scope: any, element: any, attr: any) => void);
}
priority: number
restrict: string
compile:function
- compile(element, attr): ((scope: any, element: any, attr: any) => void)
Returns ((scope: any, element: any, attr: any) => void)
- (scope, element, attr): void
Parameters
- scope: any
- element: any
- attr: any
Returns void
Properties
Returns