18 lines
241 B
Plaintext
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
|
|
}
|