UNPKG

digital-humani-js-sdk

Version:

[![Continuous Integrations](https://github.com/impe93/digital-humani-js-sdk/actions/workflows/continuous-integrations.yaml/badge.svg?branch=main)](https://github.com/impe93/digital-humani-js-sdk/actions/workflows/continuous-integrations.yaml) [![License](

14 lines 526 B
import type { Project, ProjectPartial } from './project.models'; export interface IProjectRepository { /** * Get available Projects * @returns A PartialProject with the english labels */ readonly getProjects: () => Promise<ProjectPartial[]>; /** * Get details of the project with id passed as parameter * @param projectId The project ID of the project to get */ readonly getProjectDetails: (projectId: string) => Promise<Project>; } //# sourceMappingURL=project.interface.d.ts.map