Skip to content

Commit 3179e32

Browse files
wip(docs): replace additionalModuleHandlers with moduleHandlers
1 parent 7d2f2b1 commit 3179e32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export type PathHandlers = {
3232

3333
/**
3434
* Used by the library when it does not know how to handle a given file type (eg. `.json` files).
35-
* see [[additionalModuleHandlers]]
35+
* see [[moduleHandlers]]
3636
* @param source The content of the file
3737
* @param path The path of the file
3838
* @param options The options
@@ -42,7 +42,7 @@ export type PathHandlers = {
4242
*
4343
* ```javascript
4444
* ...
45-
* additionalModuleHandlers: {
45+
* moduleHandlers: {
4646
* '.json': (source, path, options) => JSON.parse(source),
4747
* }
4848
* ...

0 commit comments

Comments
 (0)