mirror of
https://github.com/NeteaseCloudMusicApiEnhanced/api-enhanced.git
synced 2025-10-23 07:33:10 +00:00
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
import { RequestBaseConfig } from './base'
|
|
|
|
export interface LoginRequestConfig extends RequestBaseConfig {
|
|
email: string
|
|
password?: string
|
|
md5_password?: string
|
|
}
|