2025-06-16 16:07:14 +08:00

18 lines
241 B
Plaintext

export type Result = {
code: number
data: object
message: string
}
export type InitParams = {
appKey: string
appSecret: string
productId: string
deviceName: string
xp2pInfo: string
}
export type IdParams = {
id: string
}