webapp/src/types.ts

30 lines
525 B
TypeScript
Raw Normal View History

2024-06-24 17:50:27 +00:00
export interface CommentDefinition {
user: string
time_ago: string
content: string
comments: CommentDefinition[]
}
export interface StoryDefinition {
id: string
points: string
url: string
title: string
domain: string
type: string
time_ago: string
user: string
comments_count: number
comments: CommentDefinition[]
}
export interface UserDefinition {
error: string
id: string
created: string
karma: number
about: string
}
export type StoryTypes = 'top' | 'new' | 'show' | 'ask' | 'job'