mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-05-29 14:56:21 -05:00
10 lines
159 B
TypeScript
10 lines
159 B
TypeScript
export interface IProfile {
|
|
id: string;
|
|
tier: "free" | "premium";
|
|
accountGithub?: {
|
|
token?: string;
|
|
};
|
|
createdAt: number;
|
|
updatedAt: number;
|
|
}
|