23 lines
504 B
TypeScript
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;
|
|
}
|
|
}
|
|
}
|