mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
9 lines
233 B
TypeScript
9 lines
233 B
TypeScript
import { RequestBaseConfig } from './base'
|
|
|
|
export interface CloudSearchRequestConfig extends RequestBaseConfig {
|
|
keywords: string
|
|
type: 1 | 10 | 100 | 1000 | 1002 | 1004 | 1006 | 1009 | 1014
|
|
limit?: number
|
|
offset?: number
|
|
}
|