new checkPort types

This commit is contained in:
Aiden McClelland
2026-03-03 13:07:12 -07:00
parent 6778f37307
commit 16a2fe4e08
3 changed files with 59 additions and 19 deletions

View File

@@ -1,3 +1,9 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export type CheckPortRes = { ip: string; port: number; reachable: boolean }
export type CheckPortRes = {
ip: string
port: number
openExternally: boolean
openInternally: boolean
hairpinning: boolean
}