({
buildConstants,
isLocalImpersonation,
}: {
buildConstants: BuildConstants;
isLocalImpersonation: boolean;
})
| 83 | } |
| 84 | |
| 85 | export function getEnvironmentdWebsocketScheme({ |
| 86 | buildConstants, |
| 87 | isLocalImpersonation, |
| 88 | }: { |
| 89 | buildConstants: BuildConstants; |
| 90 | isLocalImpersonation: boolean; |
| 91 | }) { |
| 92 | return isSqlApiTlsEnabled({ buildConstants, isLocalImpersonation }) |
| 93 | ? ("wss" as const) |
| 94 | : ("ws" as const); |
| 95 | } |
no test coverage detected