mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
19 lines
316 B
TypeScript
19 lines
316 B
TypeScript
export interface Aria2RpcProfile {
|
|
name: string
|
|
secretKey: string
|
|
dir: string
|
|
host: string
|
|
port: string
|
|
method: string
|
|
other: string
|
|
}
|
|
export const defaultProfile: Aria2RpcProfile = {
|
|
name: '未命名',
|
|
secretKey: '',
|
|
dir: '',
|
|
host: '127.0.0.1',
|
|
port: '6800',
|
|
method: 'get',
|
|
other: '',
|
|
}
|