/** * DevExtreme (animation/presets.d.ts) * Version: 21.1.7 * Build date: Thu Aug 07 2025 * * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import { Device, } from '../core/devices'; import { animationConfig, } from './fx'; /** * @docid * @namespace DevExpress * @public */ export default class animationPresets { /** * @docid * @publicName applyChanges() * @public */ applyChanges(): void; /** * @docid * @publicName clear() * @public */ clear(): void; /** * @docid * @publicName clear(name) * @public */ clear(name: string): void; /** * @docid * @publicName getPreset(name) * @public */ getPreset(name: string): any; /** * @docid * @publicName registerDefaultPresets() * @public */ registerDefaultPresets(): void; /** * @docid * @publicName registerPreset(name, config) * @public */ registerPreset(name: string, config: { animation?: animationConfig; device?: Device }): void; /** * @docid * @publicName resetToDefaults() * @public */ resetToDefaults(): void; }