/** * DevExtreme (ui/load_indicator.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 { UserDefinedElement, } from '../core/element'; import { EventInfo, InitializedEventInfo, ChangedOptionInfo, } from '../events/index'; import Widget, { WidgetOptions, } from './widget/ui.widget'; /** @public */ export type ContentReadyEvent = EventInfo; /** @public */ export type DisposingEvent = EventInfo; /** @public */ export type InitializedEvent = InitializedEventInfo; /** @public */ export type OptionChangedEvent = EventInfo & ChangedOptionInfo; /** * @deprecated use Properties instead * @namespace DevExpress.ui */ export interface dxLoadIndicatorOptions extends WidgetOptions { /** * @docid * @default "" * @public */ indicatorSrc?: string; } /** * @docid * @inherits Widget * @namespace DevExpress.ui * @public */ export default class dxLoadIndicator extends Widget { constructor(element: UserDefinedElement, options?: dxLoadIndicatorOptions) } /** @public */ export type Properties = dxLoadIndicatorOptions; /** @deprecated use Properties instead */ export type Options = dxLoadIndicatorOptions; /** @deprecated use Properties instead */ export type IOptions = dxLoadIndicatorOptions;