alsaze 3d975d6884
All checks were successful
Deploy / build (push) Successful in 49s
Initial
2025-11-19 20:49:25 +03:00

8 lines
114 B
TypeScript

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