Files
AquaDX/AquaNet/src/pages/Transfer/TransferLib.ts
2025-03-17 14:02:50 -04:00

22 lines
334 B
TypeScript

interface AllNetSrc {
card: string
dns: string
keychip: string
}
interface AllNetGame {
game: string
version: string
}
interface AllNetClient extends AllNetSrc, AllNetGame {}
interface TrCheckGood {
gameUrl: string
userId: number
}
type TrStreamMessage = { message: string } | { error: string } | { data: string }