ff-webpage/types/component/sharedHero.ts

8 lines
132 B
TypeScript
Raw Normal View History

2025-01-18 11:30:46 +01:00
import type BaseFile from "./baseFile";
export default interface SharedHero {
id: number;
title: string;
2025-01-18 11:30:46 +01:00
banner: BaseFile;
}