Interface IAppReportService

Represents the interface for the App Report Service. Extends the IAppRemoteService interface with methods specific to report functionality.

Hierarchy

Implemented by

Properties

db: Dexie
moduleName: string

Methods

  • Retrieves multiple entities with optional pagination and filtering.

    Parameters

    • params: any

      [UNUSED PARAMETER, KEPT FOR POSSIBLE FUTURE USE] Filtering parameters.

    • options: {
          page?: number;
          pageSize?: number;
      }

      Query options including pagination.

      • Optional page?: number
      • Optional pageSize?: number

    Returns Promise<{
        count: number;
        list: IAppReport[];
        page: number;
        pageSize: number;
    }>

    An object containing the retrieved entities and total count.

  • Prints a report.

    Parameters

    • request: IReportRequest

      The request object containing the necessary information for printing the report.

    Returns Promise<void>

    A promise that resolves when the report is printed successfully.

Generated using TypeDoc