[+] Types

This commit is contained in:
Azalea
2025-03-12 01:43:56 -04:00
parent 66e5395a60
commit 519f4fc74c

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 }