facet-lib
Version:
React component library for the Bare Metal Installer
6 lines (5 loc) • 408 B
TypeScript
import { AxiosPromise } from 'axios';
import { AddHostsClusterCreateParams, Cluster, Host } from './types';
export declare const addHostsClusters: (params: AddHostsClusterCreateParams) => AxiosPromise<Cluster>;
export declare const installHosts: (clusterId: Cluster['id']) => AxiosPromise<Cluster>;
export declare const installHost: (clusterId: Cluster['id'], hostId: Host['id']) => AxiosPromise<Host>;