UNPKG

@taiga-ui/core

Version:

Core library for creating Angular components and applications using Taiga UI

12 lines (11 loc) 301 B
import { InjectionToken } from '@angular/core'; export interface TuiMedia { readonly desktopLarge: number; readonly desktopSmall: number; readonly mobile: number; readonly tablet?: number; } /** * Token for media constant */ export declare const TUI_MEDIA: InjectionToken<TuiMedia>;