11 lines
180 B
TypeScript
11 lines
180 B
TypeScript
export type Post = {
|
|
id: string
|
|
title: string
|
|
content: string
|
|
creatorId: string // User id
|
|
createdTime: number
|
|
slug: string
|
|
}
|
|
|
|
export const MAX_POST_TITLE_LENGTH = 480
|