/** * Well-known types of contexts (inputs) for actions. Note that this is an open * set -- applications can define their own contexts types. */ export type ActionContextType = "none" | "basemap" | "feature" | "map-geometry" | "layer" | "related-features" | string;