UNPKG

cloudways-js-client

Version:

A client library to power your applications with Cloudways API

15 lines (14 loc) 290 B
/** * interface to get git deployment history response */ export interface gitDeploymentHistoryResponse { logs: { git_url: string; branch_name: string; customer_id: string; path: null | string; result: string; datetime: string; description: string; }[]; }