UNPKG

y-durableobjects

Version:

[![Yjs on Cloudflare Workers with Durable Objects Demo Movie](https://i.gyazo.com/e94637740dbb11fc5107b0cd0850326d.gif)](https://gyazo.com/e94637740dbb11fc5107b0cd0850326d)

11 lines (8 loc) 273 B
/// <reference types="@cloudflare/workers-types" /> import * as hono from 'hono'; import { Env } from 'hono'; type Input = { outputFormat: "ws"; }; declare const upgrade: <E extends Env, P extends string>() => hono.MiddlewareHandler<E, P, Input>; export { upgrade };