ff-webpage/types/component/sharedHero.ts

7 lines
135 B
TypeScript

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