/** String, symbol, or an array of either. Used on drop targets. */exporttypeTypeOrTypeArray = string | symbol | Array<string | symbol>;
/** Just a plain, reusable xy coordinate type. */exportinterfaceOffset {
/** x coordinate */x: number;
/** y coordinate */y: number;
}