import type { ExtensionFactory } from "../kernel"; export type ProductId = "cli" | "web" | "desktop"; export interface ProductDefinition { id: ProductId; extensions: ExtensionFactory[]; }