[+] Types

pull/131/head
Azalea 2025-03-12 01:43:56 -04:00
parent 66e5395a60
commit 519f4fc74c
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
interface AllNetSrc {
card: string
server: 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 }