Member Junction
    Preparing search index...

    Interface IRunReportProvider

    Interface for providers that execute reports. Handles report generation with various output formats. Reports combine data from multiple sources and apply formatting.

    interface IRunReportProvider {
        Config(configData: ProviderConfigDataBase): Promise<boolean>;
        RunReport(
            params: RunReportParams,
            contextUser?: UserInfo,
        ): Promise<RunReportResult>;
    }

    Implemented by

    Index

    Methods