(value: unknown)
| 177 | export type SessionToolProfile = (typeof SESSION_TOOL_PROFILES)[number]; |
| 178 | |
| 179 | export function isSessionToolProfile(value: unknown): value is SessionToolProfile { |
| 180 | return typeof value === 'string' && (SESSION_TOOL_PROFILES as readonly string[]).includes(value); |
| 181 | } |
| 182 | |
| 183 | export interface SessionHeader { |
| 184 | // Identity |
no outgoing calls
no test coverage detected