Skip to content

Commit 6d43a63

Browse files
committed
feat(mod): export types
1 parent 359a052 commit 6d43a63

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mod.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
// Copyright 2023-latest the httpland authors. All rights reserved. MIT license.
22
// This module is browser compatible.
33

4-
export { conditionalRequest } from "./middleware.ts";
4+
export { conditionalRequest, type Options } from "./middleware.ts";
55
export { IfNoneMatch } from "./preconditions/if_none_match.ts";
66
export { IfMatch } from "./preconditions/if_match.ts";
77
export { IfModifiedSince } from "./preconditions/if_modified_since.ts";
88
export { IfUnmodifiedSince } from "./preconditions/if_unmodified_since.ts";
99
export { IfRange } from "./preconditions/if_range.ts";
10+
export { type Handler, type Middleware } from "./deps.ts";
11+
export { type Precondition } from "./types.ts";

0 commit comments

Comments
 (0)