Report.d.ts 419 B

12345678910111213
  1. import { Scope } from "../Scope";
  2. export declare function buildReportScope(config: any, reportId: any, invokeServerFn: any, getDictFnName: any): ReportScope;
  3. export declare class ReportScope extends Scope {
  4. report_id: string;
  5. report: any;
  6. invokeServerFn: any;
  7. constructor({ model, vjson }: {
  8. model: any;
  9. vjson: any;
  10. }, invokeServerFn: any);
  11. onLoad(): void;
  12. reload(): void;
  13. }