Merge pull request #99 from bknd-io/feat/data-api-bulk-update

feat/data-api-bulk-update
This commit is contained in:
dswbx
2025-02-26 19:55:22 +01:00
committed by GitHub
15 changed files with 291 additions and 246 deletions

View File

@@ -13,7 +13,7 @@ import type { Context, Hono } from "hono";
import { deleteCookie, getSignedCookie, setSignedCookie } from "hono/cookie";
import { sign, verify } from "hono/jwt";
import type { CookieOptions } from "hono/utils/cookie";
import type { ServerEnv } from "modules/Module";
import type { ServerEnv } from "modules/Controller";
type Input = any; // workaround
export type JWTPayload = Parameters<typeof sign>[0];