mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-05-29 14:56:21 -05:00
Format the Deno code via "deno fmt" to use the defined code style from the "deno.json" file.
11 lines
209 B
TypeScript
11 lines
209 B
TypeScript
export interface IProfile {
|
|
id: string;
|
|
tier: 'free' | 'premium';
|
|
subscriptionProvider?: 'stripe' | 'revenuecat';
|
|
accountGithub?: {
|
|
token?: string;
|
|
};
|
|
createdAt: number;
|
|
updatedAt: number;
|
|
}
|