IOutput: {
    capitalTimeEntries: {
        currentPage: number;
        items: {
            _created_at: string;
            _id: string;
            _updated_at: string;
            commit_hash?: null | string;
            contributor_hash: string;
            coopname: string;
            date: string;
            hours: number;
            is_committed: boolean;
            issue_hash: string;
            project_hash: string;
        }[];
        totalCount: number;
        totalPages: number;
    };
}

Type declaration

  • capitalTimeEntries: {
        currentPage: number;
        items: {
            _created_at: string;
            _id: string;
            _updated_at: string;
            commit_hash?: null | string;
            contributor_hash: string;
            coopname: string;
            date: string;
            hours: number;
            is_committed: boolean;
            issue_hash: string;
            project_hash: string;
        }[];
        totalCount: number;
        totalPages: number;
    }

    Получение пагинированного списка записей времени

    • currentPage: number

      Текущая страница

    • items: {
          _created_at: string;
          _id: string;
          _updated_at: string;
          commit_hash?: null | string;
          contributor_hash: string;
          coopname: string;
          date: string;
          hours: number;
          is_committed: boolean;
          issue_hash: string;
          project_hash: string;
      }[]

      Элементы текущей страницы

    • totalCount: number

      Общее количество элементов

    • totalPages: number

      Общее количество страниц