type tDownloadLinksHeader = {
  dict: Dictionary;
};

type rDownloadSubdomainFiles = {
  uuid: string;
  link: string;
};

type DownloadLink = {
  id: string;
  title: string;
  href: string;
  email: string;
  created_at: string;
  updated_at: string;
  user?: string;
};

type DownloadsLinks = DownloadLink[] | "loading" | "error" | "empty";
