import type { ItemConfig } from "@vertigis/viewer-spec/app-config"; /** * A function used to augment item config before it's passed into the associated * factory for construction. */ export type ConfigUpgrader = (itemConfig?: T) => Promise | T;