/** * @name browser-directives * @description Browser directives in ngx-responsive * * @license MIT */ import { TemplateRef, ViewContainerRef, ChangeDetectorRef } from '@angular/core'; import { ResponsiveState } from '../../@core/providers/responsive-state/responsive-state'; import { RESPONSIVE_BASE } from '../../@core/providers/responsive-base/responsive-base'; import { PlatformService } from '../../@core/providers/platform-service/platform.service'; export declare class IsChromeDirective extends RESPONSIVE_BASE { protected _state: string; protected _showWhenTrue: boolean; set isChrome(grid_state: string[] | string); constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class IsFirefoxDirective extends RESPONSIVE_BASE { protected _state: string; protected _showWhenTrue: boolean; set isFirefox(grid_state: string[] | string); constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class IsSafariDirective extends RESPONSIVE_BASE { protected _state: string; protected _showWhenTrue: boolean; set isSafari(grid_state: string[] | string); constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class IsOperaDirective extends RESPONSIVE_BASE { protected _state: string; protected _showWhenTrue: boolean; set isOpera(grid_state: string[] | string); constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class IsIEDirective extends RESPONSIVE_BASE { protected _state: string; protected _showWhenTrue: boolean; set isIE(grid_state: string[] | string); constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class ShowItBrowserDirective extends RESPONSIVE_BASE { protected _showWhenTrue: boolean; set showItBrowser(grid_state: string[] | string); constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class HideItBrowserDirective extends RESPONSIVE_BASE { protected _showWhenTrue: boolean; set hideItBrowser(grid_state: string[] | string); constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class IsIE9Directive extends RESPONSIVE_BASE { protected _state: string; protected _showWhenTrue: boolean; set isIE9(grid_state: string[] | string); constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class IsIE10Directive extends RESPONSIVE_BASE { protected _state: string; protected _showWhenTrue: boolean; set isIE10(grid_state: string[] | string); constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class IsIE11Directive extends RESPONSIVE_BASE { protected _state: string; protected _showWhenTrue: boolean; set isIE11(grid_state: string[] | string); constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class IsIE12Directive extends RESPONSIVE_BASE { protected _state: string; protected _showWhenTrue: boolean; set isIE12(grid_state: string[] | string); constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class ShowIEVersionDirective extends RESPONSIVE_BASE { protected _showWhenTrue: boolean; set showIEVersion(grid_state: string[] | string); constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class HideIEVersionDirective extends RESPONSIVE_BASE { protected _showWhenTrue: boolean; set hideIEVersion(grid_state: string[] | string); constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); }