export interface User {
  id: number,
  dateCreated: Date,
  username: string,
  password: string
}


export type PartialSession = Omit<Session, "issued" | "expires">

export type DecodeResult =
 | {
      type: "one"
   }
 | {
      type: "two"
   }
 | {
      type: "three"
   }
 | {
      type: "four"
   }
 | {
      type: "five"
   }