@progress/kendo-angular-utils
Version:
Kendo UI Angular utils component
22 lines (21 loc) • 845 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { InjectionToken } from '@angular/core';
import { AdaptiveSettings } from './models/adaptive-settings';
/**
* A token that specifies the AdaptiveSettings of the Kendo UI for Angular components.
*
* ```ts
* import { NgModule } from '@angular/core';
*
* @NgModule({
* ...
* providers: [{ provide: ADAPTIVE_SETTINGS, useValue: { small: 400, medium: 600 }}]
* })
* export class AppModule {}
* ```
*
*/
export declare const ADAPTIVE_SETTINGS: InjectionToken<AdaptiveSettings>;