export interface CreateRefreshCommand {
  userId: string;
  isFromPwa?: boolean;
}

export interface DeleteRefreshCommand {
  token: string;
  userId: string;
}