import type { BlockPackSpec } from "./block_registry"; /** Communicates possible block update option */ export type UpdateSuggestion = { type: "major" | "minor" | "patch"; update: V; }; /** Communicates possible block update options */ export type UpdateSuggestions = UpdateSuggestion[];