Files
feeddeck/supabase/functions/_shared/models/profile.ts
Rico Berger 37cd4dff6f [core] Run "deno fmt" (#65)
Format the Deno code via "deno fmt" to use the defined code style from
the "deno.json" file.
2023-11-04 15:45:42 +01:00

11 lines
209 B
TypeScript

export interface IProfile {
id: string;
tier: 'free' | 'premium';
subscriptionProvider?: 'stripe' | 'revenuecat';
accountGithub?: {
token?: string;
};
createdAt: number;
updatedAt: number;
}