Files
takerofnotes-cms/types/generated/components.d.ts
2026-05-27 14:44:08 -04:00

23 lines
504 B
TypeScript

import type { Schema, Struct } from '@strapi/strapi';
export interface GlobalSeo extends Struct.ComponentSchema {
collectionName: 'components_global_seos';
info: {
displayName: 'SEO';
icon: 'stack';
};
attributes: {
description: Schema.Attribute.Text;
image: Schema.Attribute.Media<'images'>;
title: Schema.Attribute.String;
};
}
declare module '@strapi/strapi' {
export module Public {
export interface ComponentSchemas {
'global.seo': GlobalSeo;
}
}
}