12345678910111213 |
- import { Scope } from "../Scope";
- export declare function buildReportScope(config: any, reportId: any, invokeServerFn: any, getDictFnName: any): ReportScope;
- export declare class ReportScope extends Scope {
- report_id: string;
- report: any;
- invokeServerFn: any;
- constructor({ model, vjson }: {
- model: any;
- vjson: any;
- }, invokeServerFn: any);
- onLoad(): void;
- reload(): void;
- }
|