Files
react-test/docs/data/material/components/image-list/itemData.d.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
188 B
TypeScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
export interface ItemDataItem {
img: string;
title: string;
author: string;
cols: number;
featured: boolean;
}
declare const itemData: ItemDataItem[];
export default itemData;