UNPKG

@adpt/cloud

Version:
23 lines 644 B
import { Component, WithChildren } from "@adpt/core"; /** * Props for {@link Service} * @public */ export interface ServiceProps extends WithChildren { /** Optional name for the service */ name?: string; } /** * An abstract component that represents a group of components that * implements a service. Note that this is not necessarily a network * service, but will often be. * * @remarks * Typical children will be {@link NetworkService} and {@link Container} elements. * * @public */ export declare abstract class Service extends Component<ServiceProps, {}> { } export default Service; //# sourceMappingURL=Service.d.ts.map