Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
timonson committed May 14, 2024
1 parent ad1d63c commit 673d88b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions middlewares/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ export {
assertError,
Context,
createHandler,
type HandlerOptions,
type Middleware,
type ServerHandlerOptions,
} from "https://dev.zaubrik.com/[email protected]/mod.ts";
} from "https://dev.zaubrik.com/[email protected]/mod.ts";
export {
type AuthInput,
type Methods,
Expand Down
4 changes: 2 additions & 2 deletions mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ export * from "./middlewares/mod.ts";
import {
Context,
createHandler,
type HandlerOptions,
type Middleware,
type ServerHandlerOptions,
} from "./middlewares/deps.ts";
import { fallBack, logger, type LoggerOptions } from "./middlewares/mod.ts";
import { resolveMainModule } from "./functions/path.ts";

export type DefaultHandlerOptions =
// deno-lint-ignore no-explicit-any
& { handlerOptions?: ServerHandlerOptions<Record<string, any>> }
& { handlerOptions?: HandlerOptions<Record<string, any>> }
& { loggerOptions?: LoggerOptions }
& { hostname: string };

Expand Down

0 comments on commit 673d88b

Please sign in to comment.