mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-11 23:40:24 +00:00
25 lines
455 B
TypeScript
25 lines
455 B
TypeScript
export interface IdMusicSignPostData {
|
|
type: 'qq' | '163',
|
|
id: string | number,
|
|
}
|
|
|
|
export interface CustomMusicSignPostData {
|
|
type: 'custom',
|
|
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,
|
|
}
|