Build base types

This commit is contained in:
nicwands
2026-05-27 14:44:08 -04:00
parent 35cf8eddbc
commit d8ab5deedb
10 changed files with 2023 additions and 259 deletions

22
types/generated/components.d.ts vendored Normal file
View File

@@ -0,0 +1,22 @@
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;
}
}
}