singer.ts 243 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import { Business } from '@/types/business'; import { User } from '@/types/user'; export interface Singer extends User { business_id?: number; business?: Business; submit_activities_count?: number; accept_activities_count?: number; }