2025-11-17 18:40:04 +03:00

8 lines
114 B
TypeScript

export interface Post {
userId: number
id: number
title: string
body: string
}
export type Posts = Post[]