devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
19 lines (18 loc) • 820 B
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\internal\scripting\_reportCompleter.d.ts)
* Version: 25.1.3
* Build date: Jun 26, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
import { ReportViewModel } from '../../controls/xrReport';
export declare class ReportCompleter {
__getCompletions(editor: any, session: any, pos: any, prefix: any, callback: any): void;
constructor(report: ko.Observable<ReportViewModel>, editorInstance: any, guid: any);
getCompletions(editor: any, session: any, pos: any, prefix: any, callback: any): void;
completions: any[];
oldPrefix: string;
report: ko.Observable<ReportViewModel>;
editorInstance: any;
guid: ko.Observable<string> | ko.Computed<string>;
}