@adpt/cloud
Version:
AdaptJS cloud component library
19 lines • 421 B
TypeScript
import { Component, WithChildren } from "@adpt/core";
/**
* Props for a {@link Compute} element
*
* @beta
*/
export interface ComputeProps extends WithChildren {
name?: string;
ip?: string;
}
/**
* Abstract element to represent a computational resource
*
* @beta
*/
export declare abstract class Compute extends Component<ComputeProps, {}> {
}
export default Compute;
//# sourceMappingURL=Compute.d.ts.map