Interface ISectionItemService

Represents a service for managing section items. Extends the IAppRemoteService interface with ISectionItem type.

Hierarchy

Implemented by

Properties

db: Dexie
moduleName: string

Methods

  • Changes the section item with the specified uid to take out.

    Parameters

    • uid: string

      The unique identifier of the section item to change.

    Returns Promise<ISectionItem>

    A promise that resolves with the updated section item.

  • 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: ISectionItem[];
        page: number;
        pageSize: number;
    }>

    An object containing the retrieved entities and total count.

Generated using TypeDoc