Feature: 解决方案列表 & 网页字体
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
export * from './common';
|
||||
export * from './production';
|
||||
export * from './singleTypes';
|
||||
export * from './singleTypes';
|
||||
export * from './solution';
|
||||
13
app/types/strapi/solution.ts
Normal file
13
app/types/strapi/solution.ts
Normal file
@ -0,0 +1,13 @@
|
||||
import type { StrapiEntity, StrapiImage } from './common';
|
||||
|
||||
export interface SolutionType extends StrapiEntity {
|
||||
type: string;
|
||||
}
|
||||
|
||||
export interface Solution extends StrapiEntity {
|
||||
title: string;
|
||||
summary: string;
|
||||
cover: StrapiImage;
|
||||
solution_type: SolutionType;
|
||||
content: string;
|
||||
}
|
||||
Reference in New Issue
Block a user