export type DraftPost = {
  image: string;
  description: string;
}

export type DraftComment = {
  body: string;
}

export type DraftUser = {
  name: string;
  email: string;
  password: string;
  image: string;
}