Files
solo-company-feed/types/post.ts
2026-03-20 13:55:27 +08:00

19 lines
341 B
TypeScript

export type Post = {
_id?: string;
title: string;
slug: string;
markdown: string;
cover?: string;
tags?: string[];
signal?: string;
author: string;
ownerId?: string;
createdAt: string;
updatedAt: string;
views?: number;
isPinned?: boolean;
pinnedAt?: string;
favoriteCount?: number;
isFavorited?: boolean;
};