mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
9 lines
207 B
TypeScript
9 lines
207 B
TypeScript
import { RequestBaseConfig } from './base'
|
|
|
|
export interface LikeRequestConfig extends RequestBaseConfig {
|
|
like?: 'true' | 'false' | boolean
|
|
id: string | number
|
|
alg?: string
|
|
time?: string | number
|
|
}
|