vdkch/src/posts/post.interface.ts
2024-08-14 21:08:10 +10:00

8 lines
149 B
TypeScript

export interface Post {
id?: number;
text: string;
imageUrl?: string;
videoUrl?: string;
drawing?: string;
code?: string;
}