yogastic/yoga-cms/generated-strapi-interfaces/api/yoga-blog-posts-component.ts
Schneider Roland a068aeb375 blog component
2025-01-20 22:21:03 +01:00

43 lines
1.2 KiB
TypeScript

// Interface automatically generated by schemas-to-ts
import { YogaBlogPost } from './yoga-blog-post';
import { YogaBlogPost_Plain } from './yoga-blog-post';
import { AdminPanelRelationPropertyModification } from '../common/AdminPanelRelationPropertyModification';
export interface YogaBlogPostsComponent {
id: number;
attributes: {
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
title?: string;
header?: string;
description?: string;
posts: { data: YogaBlogPost[] };
};
}
export interface YogaBlogPostsComponent_Plain {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
title?: string;
header?: string;
description?: string;
posts: YogaBlogPost_Plain[];
}
export interface YogaBlogPostsComponent_NoRelations {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
title?: string;
header?: string;
description?: string;
posts: number[];
}
export interface YogaBlogPostsComponent_AdminPanelLifeCycle {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
title?: string;
header?: string;
description?: string;
posts: AdminPanelRelationPropertyModification<YogaBlogPost_Plain>;
}