add strapi types
This commit is contained in:
26
yoga-cms/generated-strapi-interfaces/common/User.ts
Normal file
26
yoga-cms/generated-strapi-interfaces/common/User.ts
Normal 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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user