// This file contains type definitions for the data.
// It describes the shape of the data, and what data type each property should accept.

export type User = {
  user_id: number;
  user_name: string;
  email: string;
  password: string;
};
