63 lines
1.8 KiB
TypeScript
63 lines
1.8 KiB
TypeScript
// Interface automatically generated by schemas-to-ts
|
|
|
|
import { Link } from '../components/yoga-site/Link';
|
|
import { Link_Plain } from '../components/yoga-site/Link';
|
|
import { Link_NoRelations } from '../components/yoga-site/Link';
|
|
|
|
export interface YogaFooter {
|
|
id: number;
|
|
attributes: {
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; aboutUsHeader?: string;
|
|
aboutUsContent?: string;
|
|
quickLinksHeader?: string;
|
|
contactInfoHeader?: string;
|
|
links: Link[];
|
|
contactUsPhoneNumber?: Link;
|
|
contactUsEmail?: Link;
|
|
contactUsLocation?: Link;
|
|
copyRight?: string;
|
|
name?: string;
|
|
};
|
|
}
|
|
export interface YogaFooter_Plain {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; aboutUsHeader?: string;
|
|
aboutUsContent?: string;
|
|
quickLinksHeader?: string;
|
|
contactInfoHeader?: string;
|
|
links: Link_Plain[];
|
|
contactUsPhoneNumber?: Link_Plain;
|
|
contactUsEmail?: Link_Plain;
|
|
contactUsLocation?: Link_Plain;
|
|
copyRight?: string;
|
|
name?: string;
|
|
}
|
|
|
|
export interface YogaFooter_NoRelations {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; aboutUsHeader?: string;
|
|
aboutUsContent?: string;
|
|
quickLinksHeader?: string;
|
|
contactInfoHeader?: string;
|
|
links: Link_NoRelations[];
|
|
contactUsPhoneNumber?: Link_NoRelations;
|
|
contactUsEmail?: Link_NoRelations;
|
|
contactUsLocation?: Link_NoRelations;
|
|
copyRight?: string;
|
|
name?: string;
|
|
}
|
|
|
|
export interface YogaFooter_AdminPanelLifeCycle {
|
|
id: number;
|
|
createdAt: Date; updatedAt: Date; publishedAt?: Date; aboutUsHeader?: string;
|
|
aboutUsContent?: string;
|
|
quickLinksHeader?: string;
|
|
contactInfoHeader?: string;
|
|
links: Link_Plain[];
|
|
contactUsPhoneNumber?: Link_Plain;
|
|
contactUsEmail?: Link_Plain;
|
|
contactUsLocation?: Link_Plain;
|
|
copyRight?: string;
|
|
name?: string;
|
|
}
|