43 lines
1.2 KiB
TypeScript
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>;
|
|
}
|