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](

22 lines 507 B
export interface GetTreesRequest { enterpriseId: string; user: string; } export interface GetTreesResponse { enterpriseId: string; user: string; count: number; } export interface GetTreeRequest { treeId: string; } export interface Tree { projectId: string; created: string; uuid: string; user: string; treeCount: number; enterpriseId: string; } export declare type PlanteTreesRequest = Omit<Tree, 'created' | 'uuid'>; //# sourceMappingURL=tree.models.d.ts.map