ff-webpage/types/component/sharedHero.ts

8 lines
132 B
TypeScript
Raw Permalink Normal View History

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