mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
11 lines
261 B
TypeScript
11 lines
261 B
TypeScript
import { RequestBaseConfig } from './base'
|
|
|
|
export interface CommentRequestConfig extends RequestBaseConfig {
|
|
id: string | number
|
|
type: 0 | 1 | 2 | 3 | 4 | 5 | 6
|
|
t: 1 | 2 | 0
|
|
threadId?: string
|
|
content?: string | number
|
|
commentId?: string | number
|
|
}
|