import { exportEventTimestamps } from './urban_events/_actions';

export default {
  urbanevents: {
    export_event_timestamps: exportEventTimestamps,
  },
} as { [system: string]: { [actionCode: string]: WidgetAction } };

export type WidgetAction = (context: Record<string, any>, ...args: any[]) => void;
