Comparing version 6.0.0 to 6.1.0
@@ -0,1 +1,4 @@ | ||
import { tagsById as exif } from './tags/exif'; | ||
import { tagsById as gps } from './tags/gps'; | ||
import { tagsById as standard } from './tags/standard'; | ||
import TIFFDecoder from './tiffDecoder'; | ||
@@ -15,3 +18,8 @@ import TiffIfd from './tiffIfd'; | ||
} | ||
export { decodeTIFF as decode, isMultiPage, pageCount, TiffIfd }; | ||
const tagNames = { | ||
exif, | ||
gps, | ||
standard, | ||
}; | ||
export { decodeTIFF as decode, isMultiPage, pageCount, TiffIfd, tagNames, }; | ||
//# sourceMappingURL=index.js.map |
@@ -6,2 +6,7 @@ import TiffIfd from './tiffIfd'; | ||
declare function pageCount(data: BufferType): number; | ||
export { decodeTIFF as decode, isMultiPage, pageCount, DecodeOptions, TiffIfd }; | ||
declare const tagNames: { | ||
exif: Record<number, string>; | ||
gps: Record<number, string>; | ||
standard: Record<number, string>; | ||
}; | ||
export { decodeTIFF as decode, isMultiPage, pageCount, DecodeOptions, TiffIfd, tagNames, }; |
@@ -6,3 +6,6 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.TiffIfd = exports.pageCount = exports.isMultiPage = exports.decode = void 0; | ||
exports.tagNames = exports.TiffIfd = exports.pageCount = exports.isMultiPage = exports.decode = void 0; | ||
const exif_1 = require("./tags/exif"); | ||
const gps_1 = require("./tags/gps"); | ||
const standard_1 = require("./tags/standard"); | ||
const tiffDecoder_1 = __importDefault(require("./tiffDecoder")); | ||
@@ -26,2 +29,8 @@ const tiffIfd_1 = __importDefault(require("./tiffIfd")); | ||
exports.pageCount = pageCount; | ||
const tagNames = { | ||
exif: exif_1.tagsById, | ||
gps: gps_1.tagsById, | ||
standard: standard_1.tagsById, | ||
}; | ||
exports.tagNames = tagNames; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "tiff", | ||
"version": "6.0.0", | ||
"version": "6.1.0", | ||
"description": "TIFF image decoder written entirely in JavaScript", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -0,1 +1,4 @@ | ||
import { tagsById as exif } from './tags/exif'; | ||
import { tagsById as gps } from './tags/gps'; | ||
import { tagsById as standard } from './tags/standard'; | ||
import TIFFDecoder from './tiffDecoder'; | ||
@@ -20,2 +23,15 @@ import TiffIfd from './tiffIfd'; | ||
export { decodeTIFF as decode, isMultiPage, pageCount, DecodeOptions, TiffIfd }; | ||
const tagNames = { | ||
exif, | ||
gps, | ||
standard, | ||
}; | ||
export { | ||
decodeTIFF as decode, | ||
isMultiPage, | ||
pageCount, | ||
DecodeOptions, | ||
TiffIfd, | ||
tagNames, | ||
}; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
190694
3654