🎉 first commit

This commit is contained in:
LIlGG
2025-09-24 13:06:25 +08:00
commit 1f4fb103e9
409 changed files with 61222 additions and 0 deletions

40
app/types/vercel.ts Normal file
View File

@@ -0,0 +1,40 @@
export interface VercelUser {
user: any;
id: string;
username: string;
email: string;
name: string;
avatar?: string;
}
export interface VercelProject {
createdAt: string | number | Date;
targets: any;
id: string;
name: string;
framework?: string;
latestDeployments?: Array<{
id: string;
url: string;
created: number;
state: string;
}>;
}
export interface VercelStats {
projects: VercelProject[];
totalProjects: number;
}
export interface VercelConnection {
isConnect: boolean;
user: VercelUser | null;
stats?: VercelStats;
}
export interface VercelProjectInfo {
id: string;
name: string;
url: string;
chatId: string;
}