Skip to content

Commit

Permalink
feat(mod): export types of interface
Browse files Browse the repository at this point in the history
  • Loading branch information
TomokiMiyauci committed Mar 22, 2023
1 parent dd6d973 commit 8687894
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
// Copyright 2023-latest the httpland authors. All rights reserved. MIT license.
// This module is browser compatible.

export { acceptRanges, contentRange, rangeRequest } from "./middleware.ts";
export { type Handler } from "./deps.ts";
export { rangeRequest } from "./middleware.ts";
export {
type Handler,
type IntRange,
type Middleware,
type OtherRange,
type RangeSet,
type RangeSpec,
type SuffixRange,
} from "./deps.ts";
export { type Range, type RangeContext, type Respond } from "./types.ts";

0 comments on commit 8687894

Please sign in to comment.