refactor: trim gateway local type exports

This commit is contained in:
Peter Steinberger
2026-05-01 22:38:42 +01:00
parent fe8966b4ea
commit e0cc374b07
3 changed files with 4 additions and 4 deletions

View File

@@ -23,13 +23,13 @@ const ONE_HOUR_MS = 60 * 60_000;
* Providers should only publish that timestamp from transport/heartbeat/poll
* signals, not from ordinary app messages.
*/
export type ChannelHealthTimingPolicy = {
type ChannelHealthTimingPolicy = {
monitorStartupGraceMs: number;
channelConnectGraceMs: number;
staleEventThresholdMs: number;
};
export type ChannelHealthMonitorDeps = {
type ChannelHealthMonitorDeps = {
channelManager: ChannelManager;
checkIntervalMs?: number;
/** @deprecated use timing.monitorStartupGraceMs */

View File

@@ -20,7 +20,7 @@ export type ChatAbortControllerEntry = {
kind?: "chat-send" | "agent";
};
export type RegisteredChatAbortController = {
type RegisteredChatAbortController = {
controller: AbortController;
registered: boolean;
entry?: ChatAbortControllerEntry;

View File

@@ -17,7 +17,7 @@ export type ExplicitGatewayAuth = {
password?: string;
};
export type ResolvedGatewayCredentials = {
type ResolvedGatewayCredentials = {
token?: string;
password?: string;
};