8 lines
152 B
TypeScript
8 lines
152 B
TypeScript
export type BlogData = {
|
|
slug?: string | null;
|
|
title: string;
|
|
description: string;
|
|
img?: { url: string; alt?: string };
|
|
posted_at: string;
|
|
};
|