mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-07-19 12:03:37 +00:00
26 lines
546 B
TypeScript
26 lines
546 B
TypeScript
export interface IdMusicSignPostData {
|
|
type: 'qq' | '163' | 'kugou' | 'migu' | 'kuwo',
|
|
id: string | number,
|
|
}
|
|
|
|
export interface CustomMusicSignPostData {
|
|
type: 'qq' | '163' | 'kugou' | 'migu' | 'kuwo' | 'custom',
|
|
id: undefined,
|
|
url: string,
|
|
audio?: string,
|
|
title?: string,
|
|
image: string,
|
|
singer?: string
|
|
}
|
|
|
|
export interface MiniAppLuaJsonType {
|
|
prompt: string,
|
|
title: string,
|
|
preview: string,
|
|
jumpUrl: string,
|
|
tag: string,
|
|
tagIcon: string,
|
|
source: string,
|
|
sourcelogo: string,
|
|
}
|