@adpt/core
Version:
AdaptJS core library
13 lines • 425 B
TypeScript
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