ng2-responsive
Version:
Superset of RESPONSIVE DIRECTIVES to show or hide items according to the size of the device screen and another features in Angular 2
25 lines (24 loc) • 589 B
TypeScript
export interface JsonGrid {
min: number;
max: number;
}
export interface responsivePattern {
bootstrap?: string | string[];
browser?: string | string[];
device?: string | string[];
pixelratio?: string | string[];
orientation?: string | string[];
standard?: string | string[];
ie?: string | string[];
sizes?: number;
}
export interface responsiveSubscriptions {
bootstrap?: boolean;
browser?: boolean;
device?: boolean;
pixelratio?: boolean;
orientation?: boolean;
standard?: boolean;
ie?: boolean;
sizes?: boolean;
}