Skip to content

Commit

Permalink
docs: add generateHTML to options type
Browse files Browse the repository at this point in the history
  • Loading branch information
carbontwelve committed Jan 31, 2023
1 parent c484f0a commit 113f9c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ type EleventyPluginBlogtimesOptions = {
outputFileExtension: string, // Image mimetype, default: 'png, must be either png or jpg
outputDir: string, // Image output directory, default: 'bt-images'
urlPath: string, // Image url path, default: 'bt-images'
hashLength?: number; // Image filename hash length, default: 10
hashLength?: number, // Image filename hash length, default: 10

generateHTML?: Function,
}
```
Expand Down
4 changes: 3 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ type EleventyPluginBlogtimesOptions = {
outputFileExtension: string, // Image mimetype, default: 'png, must be either png or jpg
outputDir: string, // Image output directory, default: 'bt-images'
urlPath: string, // Image url path, default: 'bt-images'
hashLength?: number; // Image filename hash length, default: 10
hashLength?: number, // Image filename hash length, default: 10

generateHTML?: Function,
}

type DirectoriesConfig = {
Expand Down

0 comments on commit 113f9c3

Please sign in to comment.