UNPKG

@adpt/core

Version:
13 lines 425 B
import { ApiResponse, WithLogger } from "./common"; export interface DeploymentInfo { deployID: string; } export interface ListOptions extends WithLogger { adaptUrl: string; } export interface ListResponse extends ApiResponse { type: "success"; deployments: DeploymentInfo[]; } export declare function listDeployments(options: ListOptions): Promise<ListResponse>; //# sourceMappingURL=listDeployments.d.ts.map