ri-flex-layout
Version:
An alternative library to Angular's deprecated [angular-flex-layout](https://github.com/angular/flex-layout) library. `ri-flex-layout` helps you achieve responsive layouts in Angular applications with minimal code changes.
10 lines (9 loc) • 373 B
TypeScript
import { InjectionToken } from '@angular/core';
export declare function removeStyles(_document: Document, platformId: Object): () => void;
export declare const BROWSER_PROVIDER: {
provide: InjectionToken<(() => void)[]>;
useFactory: typeof removeStyles;
deps: InjectionToken<Document>[];
multi: boolean;
};
export declare const CLASS_NAME = "flex-layout-";