happy-server/sources/types.ts
2025-09-01 15:32:10 -07:00

14 lines
366 B
TypeScript

import { GitHubProfile } from "./app/api/types";
import { ImageRef } from "./storage/files";
export type AccountProfile = {
firstName: string | null;
lastName: string | null;
avatar: ImageRef | null;
github: GitHubProfile | null;
settings: {
value: string | null;
version: number;
} | null;
connectedServices: string[];
}