Profile

interface Profile

profile.interface.ts
import { User } from '@supabase/supabase-js';

export interface Profile {
  id: User['id'];
  avatar_url: string | null;
  username: string;
  created_at: string;
  updated_at: string;
}

Last updated

Was this helpful?