import { ReactNode } from "react";

export type OMSExtensionType = "url" | "no-op" | "background-action" | "view";

export type OMSExtension = {
  id: string;
  title: string;
  subTitle?: string;
  secondLineTitle?: string;
  desc?: string;
  type: OMSExtensionType;
  url?: string;
  iconPath?: string;
  emojiChar?: string;
  backgroundAction?: () => void;
  view?: ReactNode;
};
