13 lines
329 B
TypeScript
13 lines
329 B
TypeScript
import { GitHubProfile } from "./app/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;
|
|
} |