Skip to content

Commit

Permalink
Export ImageDataHashTag interface
Browse files Browse the repository at this point in the history
  • Loading branch information
mceachen committed Jul 24, 2024
1 parent 05f7c95 commit beee874
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ vendored versions of ExifTool match the version that they vendor.

## Version history

### v28.1.0

- 📦 Add tests for [#187](https://github.com/photostructure/exiftool-vendored.js/issues/187)

- 📦 Export `ImageDataHashTag` interface

### v28.0.0

- 🌱/✨/🐞 ExifTool upgraded to [v12.89](https://exiftool.org/history.html#12.89). Notably, ExifTool on Windows is now using the "official" packaging. This should be equivalent to prior builds, as [exiftool-vendored.exe](https://github.com/photostructure/exiftool-vendored.exe) was already using Oliver Betz's perl launcher.
Expand Down
2 changes: 2 additions & 0 deletions src/ExifTool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { ExifToolVendoredTags } from "./ExifToolVendoredTags"
import { exiftoolPath } from "./ExiftoolPath"
import { ICCProfileTags } from "./ICCProfileTags"
import { IPTCApplicationRecordTags } from "./IPTCApplicationRecordTags"
import { ImageDataHashTag } from "./ImageDataHashTag"
import { isWin32 } from "./IsWin32"
import { lazy } from "./Lazy"
import {
Expand Down Expand Up @@ -122,6 +123,7 @@ export type {
ICCProfileTags,
IPTCApplicationRecordTags,
IPTCTags,
ImageDataHashTag,
JFIFTags,
Json,
KeywordInfoStruct,
Expand Down
1 change: 1 addition & 0 deletions src/ImageDataHashTag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export interface ImageDataHashTag {
* value is overridden with a valid string value.
*
* @see ExifToolOptions.imageHashType
* @see https://exiftool.org/ExifTool.html#ImageHashType
*/
ImageDataHash?: string
}

0 comments on commit beee874

Please sign in to comment.