Fix import

This commit is contained in:
Owen
2026-05-29 15:38:37 -07:00
parent b071fa2c9f
commit 0ab1854125
11 changed files with 19 additions and 19 deletions

View File

@@ -0,0 +1 @@
export * from "./types";

View File

@@ -0,0 +1,10 @@
export type GetBrowserTargetResponse = {
ip: string;
port: number;
authToken: string;
orgId: string;
resourceId: number;
niceId: string;
pamMode: "passthrough" | "push" | null;
authDaemonMode: "site" | "remote" | "native" | null;
};