ff-webpage/types/component/sharedHero.ts

7 lines
132 B
TypeScript

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