UNPKG

devexpress-reporting

Version:

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

34 lines (33 loc) 1.56 kB
/** * DevExpress HTML/JS Reporting (designer\widgets\propertyGridEditors.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 './editorTemplates'; import { ISerializationInfo, UndoEngine } from '@devexpress/analytics-core/analytics-utils'; import * as ko from 'knockout'; import { ObjectProperties, PropertyGridEditor, FieldListEditor } from '@devexpress/analytics-core/analytics-widgets'; export declare class ContentByTypeEditor extends PropertyGridEditor { createObjectProperties(): ObjectProperties; getViewModel(): ko.Computed<any>; } export declare class DataBindingsEditor extends PropertyGridEditor { constructor(info: ISerializationInfo, level: any, parentDisabled?: ko.Computed<boolean>, textToSearch?: any); createObjectProperties(): ObjectProperties; } export declare class DataBindingEditor extends FieldListEditor { readonly actions: import("@devexpress/analytics-core/analytics-widgets").IFormatStringEditorActions; readonly customPatterns: (newVal?: { [key: string]: string[]; }) => { [key: string]: string[]; }; } export declare class FontEditorUndo extends PropertyGridEditor { constructor(info: ISerializationInfo, level: any, parentDisabled?: ko.Computed<boolean>, textToSearch?: any); generateValue(undoEngine: ko.Observable<UndoEngine>): any; createObjectProperties(): ObjectProperties; undoEngine: ko.Observable<UndoEngine>; }