@fastify/websocket
Advanced tools
Comparing version 10.0.0 to 10.0.1
{ | ||
"name": "@fastify/websocket", | ||
"version": "10.0.0", | ||
"version": "10.0.1", | ||
"description": "basic websocket support for fastify", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -101,2 +101,4 @@ /// <reference types="node" /> | ||
export type WebSocket = WebSocket.WebSocket; | ||
export const fastifyWebsocket: FastifyWebsocket | ||
@@ -103,0 +105,0 @@ export { fastifyWebsocket as default } |
@@ -1,6 +0,6 @@ | ||
import fastifyWebsocket, { WebsocketHandler, fastifyWebsocket as namedFastifyWebsocket, default as defaultFastifyWebsocket } from '..'; | ||
import fastifyWebsocket, { WebsocketHandler, fastifyWebsocket as namedFastifyWebsocket, default as defaultFastifyWebsocket, WebSocket } from '..'; | ||
import type { IncomingMessage } from "http"; | ||
import fastify, { RouteOptions, FastifyRequest, FastifyInstance, FastifyReply, RequestGenericInterface, FastifyBaseLogger, RawServerDefault, FastifySchema, RawRequestDefaultExpression } from 'fastify'; | ||
import { expectType } from 'tsd'; | ||
import { Server, WebSocket } from 'ws'; | ||
import { Server } from 'ws'; | ||
import { RouteGenericInterface } from 'fastify/types/route'; | ||
@@ -7,0 +7,0 @@ import { TypeBoxTypeProvider } from '@fastify/type-provider-typebox'; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
87283
1967