14 lines
366 B
TypeScript
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[];
|
|
} |