7 lines
114 B
TypeScript
Executable File
7 lines
114 B
TypeScript
Executable File
export interface Vote {
|
|
id: number;
|
|
user_id: number;
|
|
user_ip: string;
|
|
vote_type: 'upvote' | 'downvote';
|
|
}
|