47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
// Interface automatically generated by schemas-to-ts
|
|
|
|
import { Button } from '../components/yoga-site/Button';
|
|
import { Button_Plain } from '../components/yoga-site/Button';
|
|
import { Button_NoRelations } from '../components/yoga-site/Button';
|
|
|
|
export interface YogaDiscountComponent {
|
|
id: number;
|
|
attributes: {
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; headerPart1?: string;
|
|
headerDiscount?: string;
|
|
headerPart2?: string;
|
|
description?: string;
|
|
button: Button;
|
|
name?: string;
|
|
};
|
|
}
|
|
export interface YogaDiscountComponent_Plain {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; headerPart1?: string;
|
|
headerDiscount?: string;
|
|
headerPart2?: string;
|
|
description?: string;
|
|
button: Button_Plain;
|
|
name?: string;
|
|
}
|
|
|
|
export interface YogaDiscountComponent_NoRelations {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; headerPart1?: string;
|
|
headerDiscount?: string;
|
|
headerPart2?: string;
|
|
description?: string;
|
|
button: Button_NoRelations;
|
|
name?: string;
|
|
}
|
|
|
|
export interface YogaDiscountComponent_AdminPanelLifeCycle {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; headerPart1?: string;
|
|
headerDiscount?: string;
|
|
headerPart2?: string;
|
|
description?: string;
|
|
button: Button_Plain;
|
|
name?: string;
|
|
}
|