Skip to content

Commit

Permalink
NormalizeResult 型をexportする (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
keichan34 authored Dec 24, 2024
1 parent 11fe857 commit 529e830
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main-node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { __internals, FetchOptions, FetchResponseLike } from './config'
import { promises as fs } from 'node:fs'
import { fetch } from 'undici'

export type { NormalizeResult } from './types'

export const requestHandlers = {
file: async (fileURL: URL, options?: FetchOptions) => {
const o = options || {}
Expand Down
2 changes: 2 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import * as Normalize from './normalize'

export type { NormalizeResult } from './types'

export const version = Normalize.version
export const config = Normalize.config
export const normalize = Normalize.normalize

0 comments on commit 529e830

Please sign in to comment.