ready for staging
This commit is contained in:
parent
e6ee25a18c
commit
fe179300fd
12 changed files with 1193 additions and 0 deletions
34
types/generated/components.d.ts
vendored
Normal file
34
types/generated/components.d.ts
vendored
Normal file
|
@ -0,0 +1,34 @@
|
|||
import type { Schema, Struct } from '@strapi/strapi';
|
||||
|
||||
export interface AboutAbout extends Struct.ComponentSchema {
|
||||
collectionName: 'components_about_abouts';
|
||||
info: {
|
||||
displayName: 'about';
|
||||
};
|
||||
attributes: {
|
||||
aboutPhoto: Schema.Attribute.Media<
|
||||
'images' | 'files' | 'videos' | 'audios'
|
||||
>;
|
||||
aboutText: Schema.Attribute.String;
|
||||
};
|
||||
}
|
||||
|
||||
export interface HeroHero extends Struct.ComponentSchema {
|
||||
collectionName: 'components_hero_heroes';
|
||||
info: {
|
||||
displayName: 'hero';
|
||||
};
|
||||
attributes: {
|
||||
heroDescription: Schema.Attribute.String;
|
||||
heroText: Schema.Attribute.String;
|
||||
};
|
||||
}
|
||||
|
||||
declare module '@strapi/strapi' {
|
||||
export module Public {
|
||||
export interface ComponentSchemas {
|
||||
'about.about': AboutAbout;
|
||||
'hero.hero': HeroHero;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue