ff-webpage/types/component/sharedHero.ts

8 lines
135 B
TypeScript
Raw Normal View History

import type BaseImage from "./baseImage";
export default interface SharedHero {
id: number;
title: string;
banner: BaseImage;
}