mirror of
https://github.com/codedread/bitjs
synced 2025-10-03 09:39:16 +02:00
45 lines
No EOL
3.7 KiB
TypeScript
45 lines
No EOL
3.7 KiB
TypeScript
export { findMimeType } from "./file/sniffer.js";
|
|
export { BitBuffer } from "./io/bitbuffer.js";
|
|
export { BitStream } from "./io/bitstream.js";
|
|
export { ByteBuffer } from "./io/bytebuffer.js";
|
|
export { ByteStream } from "./io/bytestream.js";
|
|
export type ProbeStream = import('./codecs/codecs.js').ProbeStream;
|
|
export type ProbeFormat = import('./codecs/codecs.js').ProbeFormat;
|
|
export type ProbeInfo = import('./codecs/codecs.js').ProbeInfo;
|
|
export type GifApplicationExtension = import('./image/parsers/gif.js').GifApplicationExtension;
|
|
export type GifColor = import('./image/parsers/gif.js').GifColor;
|
|
export type GifCommentExtension = import('./image/parsers/gif.js').GifCommentExtension;
|
|
export type GifGraphicControlExtension = import('./image/parsers/gif.js').GifGraphicControlExtension;
|
|
export type GifHeader = import('./image/parsers/gif.js').GifHeader;
|
|
export type GifLogicalScreen = import('./image/parsers/gif.js').GifLogicalScreen;
|
|
export type GifPlainTextExtension = import('./image/parsers/gif.js').GifPlainTextExtension;
|
|
export type GifTableBasedImage = import('./image/parsers/gif.js').GifTableBasedImage;
|
|
export type JpegApp0Extension = import('./image/parsers/jpeg.js').JpegApp0Extension;
|
|
export type JpegApp0Marker = import('./image/parsers/jpeg.js').JpegApp0Marker;
|
|
export type JpegComponentDetail = import('./image/parsers/jpeg.js').JpegComponentDetail;
|
|
export type JpegDefineHuffmanTable = import('./image/parsers/jpeg.js').JpegDefineHuffmanTable;
|
|
export type JpegDefineQuantizationTable = import('./image/parsers/jpeg.js').JpegDefineQuantizationTable;
|
|
export type JpegStartOfFrame = import('./image/parsers/jpeg.js').JpegStartOfFrame;
|
|
export type JpegStartOfScan = import('./image/parsers/jpeg.js').JpegStartOfScan;
|
|
export type PngBackgroundColor = import('./image/parsers/png.js').PngBackgroundColor;
|
|
export type PngChromaticies = import('./image/parsers/png.js').PngChromaticities;
|
|
export type PngCompressedTextualData = import('./image/parsers/png.js').PngCompressedTextualData;
|
|
export type PngHistogram = import('./image/parsers/png.js').PngHistogram;
|
|
export type PngImageData = import('./image/parsers/png.js').PngImageData;
|
|
export type PngImageGamma = import('./image/parsers/png.js').PngImageGamma;
|
|
export type PngImageHeader = import('./image/parsers/png.js').PngImageHeader;
|
|
export type PngIntlTextualData = import('./image/parsers/png.js').PngIntlTextualData;
|
|
export type PngLastModTime = import('./image/parsers/png.js').PngLastModTime;
|
|
export type PngPalette = import('./image/parsers/png.js').PngPalette;
|
|
export type PngPhysicalPixelDimensions = import('./image/parsers/png.js').PngPhysicalPixelDimensions;
|
|
export type PngSignificantBits = import('./image/parsers/png.js').PngSignificantBits;
|
|
export type PngSuggestedPalette = import('./image/parsers/png.js').PngSuggestedPalette;
|
|
export type PngTextualData = import('./image/parsers/png.js').PngTextualData;
|
|
export type PngTransparency = import('./image/parsers/png.js').PngTransparency;
|
|
export { UnarchiveEvent, UnarchiveEventType, UnarchiveInfoEvent, UnarchiveErrorEvent, UnarchiveStartEvent, UnarchiveFinishEvent, UnarchiveProgressEvent, UnarchiveExtractEvent, Unarchiver, Unzipper, Unrarrer, Untarrer, getUnarchiver } from "./archive/decompress.js";
|
|
export { getFullMIMEString, getShortMIMEString } from "./codecs/codecs.js";
|
|
export { GifParseEventType, GifParser } from "./image/parsers/gif.js";
|
|
export { JpegComponentType, JpegDctType, JpegDensityUnits, JpegExtensionThumbnailFormat, JpegHuffmanTableType, JpegParseEventType, JpegParser, JpegSegmentType } from "./image/parsers/jpeg.js";
|
|
export { PngParseEventType, PngParser } from "./image/parsers/png.js";
|
|
export { convertWebPtoPNG, convertWebPtoJPG } from "./image/webp-shim/webp-shim.js";
|
|
//# sourceMappingURL=index.d.ts.map
|