/** * DevExtreme (data/array_store.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 Store, { Options as StoreOptions, } from './abstract_store'; /** @public */ export type Options = ArrayStoreOptions; /** * @namespace DevExpress.data * @deprecated Use Options instead */ export interface ArrayStoreOptions extends StoreOptions { // eslint-disable-line @typescript-eslint/no-unused-vars /** * @docid * @public */ data?: Array; } /** * @docid * @inherits Store * @public */ export default class ArrayStore extends Store { constructor(options?: Options) /** * @docid * @publicName clear() * @public */ clear(): void; /** * @docid * @publicName createQuery() * @return object * @public */ createQuery(): any; }