/** * @name bootstrap.directives * @description bootstrap directives * @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 XlDirective extends RESPONSIVE_BASE { protected _state: string; protected _showWhenTrue: boolean; constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class LgDirective extends RESPONSIVE_BASE { protected _state: string; protected _showWhenTrue: boolean; constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class MdDirective extends RESPONSIVE_BASE { protected _state: string; protected _showWhenTrue: boolean; constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class SmDirective extends RESPONSIVE_BASE { protected _state: string; protected _showWhenTrue: boolean; constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class XsDirective extends RESPONSIVE_BASE { protected _state: string; protected _showWhenTrue: boolean; constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class ShowItBootstrapDirective extends RESPONSIVE_BASE { protected _showWhenTrue: boolean; set showItBootstrap(grid_state: string[] | string); constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); } export declare class HideItBootstrapDirective extends RESPONSIVE_BASE { protected _showWhenTrue: boolean; set hideItBootstrap(grid_state: string[] | string); constructor(templateRef: TemplateRef, viewContainer: ViewContainerRef, _responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); }