devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
21 lines (18 loc) • 459 B
TypeScript
/**
* DevExtreme (core/options.d.ts)
* Version: 22.1.9
* Build date: Tue Apr 18 2023
*
* Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import {
Device,
} from './devices';
import {
DeepPartial,
} from './index';
export type DefaultOptionsRule<T> = {
device?: Device | Device[] | ((device: Device) => boolean);
options: DeepPartial<T>;
};