add strapi types

This commit is contained in:
Schneider Roland
2025-01-11 20:58:03 +01:00
parent 35dcd6ab22
commit ea3a2e3366
22 changed files with 540 additions and 3 deletions

View File

@@ -0,0 +1,26 @@
// Interface automatically generated by schemas-to-ts
export interface User {
id: number;
attributes: {
username: string;
email: string;
provider: string;
confirmed: boolean;
blocked: boolean;
createdAt: Date;
updatedAt: Date;
}
}
export interface User_Plain {
id: number;
username: string;
email: string;
provider: string;
confirmed: boolean;
blocked: boolean;
createdAt: Date;
updatedAt: Date;
}