UNPKG

@openstream/client

Version:
20 lines 663 B
import type { CountryCode } from "../CountryCode.js"; import type { DateTime } from "../DateTime.js"; import type { Request } from "./http/Request.js"; export type StreamConnection = { _id: string; station_id: string; deployment_id: string; transfer_bytes: number | null | undefined; duration_ms: number | null | undefined; is_open: boolean; created_at: DateTime; country_code: CountryCode | null | undefined; ip: string; is_external_relay_redirect: boolean; _m: boolean; request: Request; last_transfer_at: DateTime; closed_at: DateTime | null | undefined; }; //# sourceMappingURL=StreamConnection.d.ts.map