UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

51 lines (50 loc) 1.63 kB
/** * DevExtreme (ui/pivot_grid/xmla_store.d.ts) * Version: 19.2.6 * Build date: Thu Jan 30 2020 * * Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ /** Warning! This type is used for internal purposes. Do not import it directly. */ export interface XmlaStoreOptions { /** * @docid XmlaStoreOptions.beforeSend * @type function * @type_function_param1 options:object * @type_function_param1_field1 url:string * @type_function_param1_field2 method:string * @type_function_param1_field3 headers:object * @type_function_param1_field4 xhrFields:object * @type_function_param1_field5 data:string * @type_function_param1_field6 dataType:string * @prevFileNamespace DevExpress.ui * @public */ beforeSend?: ((options: { url?: string, method?: string, headers?: any, xhrFields?: any, data?: string, dataType?: string }) => any); /** * @docid XmlaStoreOptions.catalog * @type string * @prevFileNamespace DevExpress.ui * @public */ catalog?: string; /** * @docid XmlaStoreOptions.cube * @type string * @prevFileNamespace DevExpress.ui * @public */ cube?: string; /** * @docid XmlaStoreOptions.url * @type string * @prevFileNamespace DevExpress.ui * @public */ url?: string; } /** The XmlaStore is a store that provides an interface for accessing an OLAP cube according to the XMLA standard. */ export default class XmlaStore { constructor(options?: XmlaStoreOptions) }