convert about types from component to collection-type
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
// Interface automatically generated by schemas-to-ts
|
||||
|
||||
export interface YogaSingleSpeciality {
|
||||
id: number;
|
||||
attributes: {
|
||||
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
||||
description?: string;
|
||||
name: string;
|
||||
locale: string;
|
||||
localizations?: { data: YogaSingleSpeciality[] };
|
||||
};
|
||||
}
|
||||
export interface YogaSingleSpeciality_Plain {
|
||||
id: number;
|
||||
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
||||
description?: string;
|
||||
name: string;
|
||||
locale: string;
|
||||
localizations?: YogaSingleSpeciality_Plain[];
|
||||
}
|
||||
|
||||
export interface YogaSingleSpeciality_NoRelations {
|
||||
id: number;
|
||||
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
||||
description?: string;
|
||||
name: string;
|
||||
locale: string;
|
||||
localizations?: YogaSingleSpeciality[];
|
||||
}
|
||||
|
||||
export interface YogaSingleSpeciality_AdminPanelLifeCycle {
|
||||
id: number;
|
||||
createdAt: Date; updatedAt: Date; publishedAt?: Date; title?: string;
|
||||
description?: string;
|
||||
name: string;
|
||||
locale: string;
|
||||
localizations?: YogaSingleSpeciality[];
|
||||
}
|
||||
Reference in New Issue
Block a user