Files
NapCatQQ/src/core/entities/sign.ts
Fripine 2428a12221 chore
2024-09-21 12:30:05 +08:00

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,
}