roxify 1.7.3 → 1.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,13 +1,13 @@
1
1
  export declare const CHUNK_TYPE = "rXDT";
2
- export declare const MAGIC: any;
3
- export declare const PIXEL_MAGIC: any;
4
- export declare const PIXEL_MAGIC_BLOCK: any;
2
+ export declare const MAGIC: Buffer<ArrayBuffer>;
3
+ export declare const PIXEL_MAGIC: Buffer<ArrayBuffer>;
4
+ export declare const PIXEL_MAGIC_BLOCK: Buffer<ArrayBuffer>;
5
5
  export declare const ENC_NONE = 0;
6
6
  export declare const ENC_AES = 1;
7
7
  export declare const ENC_XOR = 2;
8
- export declare const FILTER_ZERO: any;
9
- export declare const PNG_HEADER: any;
10
- export declare const PNG_HEADER_HEX: any;
8
+ export declare const FILTER_ZERO: Buffer<ArrayBuffer>;
9
+ export declare const PNG_HEADER: Buffer<ArrayBuffer>;
10
+ export declare const PNG_HEADER_HEX: string;
11
11
  export declare const MARKER_COLORS: {
12
12
  r: number;
13
13
  g: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "roxify",
3
- "version": "1.7.3",
3
+ "version": "1.7.4",
4
4
  "type": "module",
5
5
  "description": "Ultra-lightweight PNG steganography with native Rust acceleration. Encode binary data into PNG images with zstd compression.",
6
6
  "main": "dist/index.js",
@@ -102,4 +102,4 @@
102
102
  "engines": {
103
103
  "node": ">=18.0.0"
104
104
  }
105
- }
105
+ }