import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models"; export interface DeployedExtension { extensionId: GuidValue; name: string; version: string; serviceManifests: Array; } export interface ServiceManifest { serviceDefinition: Array; } export interface ServiceDefinitionManifestBase { id: GuidValue; title: string; description: string; serviceType: "WorkerService" | "WebAppService" | "CustomService"; }