11 lines
156 B
TypeScript
11 lines
156 B
TypeScript
import { UserRating } from './base'
|
|
|
|
export interface Request {
|
|
userId: number
|
|
}
|
|
|
|
export interface Response {
|
|
userId: number
|
|
userRating: UserRating
|
|
}
|