GeneIT/geneit_app/src/api/DataApi.ts

18 lines
352 B
TypeScript
Raw Normal View History

2023-08-18 13:10:16 +00:00
import { APIClient } from "./ApiClient";
/**
* Data management api client
*/
export class DataApi {
/**
* Export the data of a family
*/
static async ExportData(family_id: number): Promise<Blob> {
const res = await APIClient.exec({
uri: `/family/${family_id}/data/export`,
method: "GET",
});
return res.data;
}
}