8 lines
114 B
TypeScript
8 lines
114 B
TypeScript
export interface Post {
|
|
userId: number
|
|
id: number
|
|
title: string
|
|
body: string
|
|
}
|
|
export type Posts = Post[]
|