/** The details of the available dashboard gadget. */
export interface AvailableDashboardGadget {
  /** The module key of the gadget type. */
  moduleKey?: string;
  /** The URI of the gadget type. */
  uri?: string;
  /** The title of the gadget. */
  title: string;
}
