forked from Cookies_Github_mirror/AquaDX
22 lines
334 B
TypeScript
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 }
|
|
|