UNPKG

devexpress-reporting

Version:

DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.

25 lines (24 loc) 984 B
/** * DevExpress HTML/JS Reporting (viewer\mobile\internal\_mobilePreviewModel.d.ts) * Version: 20.2.13 * Build date: Apr 10, 2023 * Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import * as ko from 'knockout'; import { PreviewDisposableModel } from '../../internal/_previewModel'; import { ISlideOptions } from '../mobilePreview'; import { GalleryModel } from './gallery/_galleryModel'; import { MobilePaginator } from './_paginator'; import { IMobileDesignerModel } from '../utils/_mobileInitializer'; export declare class MobilePreviewModel extends PreviewDisposableModel { slideOptions: ISlideOptions; gallery: GalleryModel; brickEventsDisabled: ko.Observable<boolean> | ko.Computed<boolean>; paginator: MobilePaginator; availableFormats: ko.ObservableArray<{ text: string; format: string; }>; constructor(options: IMobileDesignerModel); }