ionic-framework
Version:
13 lines (12 loc) • 424 B
TypeScript
import { Renderer, ElementRef } from 'angular2/core';
/**
* The blur attribute applies the CSS blur attribute to an element. If the CSS attribute is not supported,
* it will fall back to applying a semi-transparent background color to the element.
*
* @demo /docs/v2/demos/blur/
*/
export declare class Blur {
private elementRef;
private renderer;
constructor(elementRef: ElementRef, renderer: Renderer);
}