Revert "Fix type definitions, bump version"

This reverts commit eb9ca5b405.
This commit is contained in:
Anton Liaposhchenko 2023-12-28 12:23:55 +02:00
parent eb9ca5b405
commit 082e8b6596
2 changed files with 3 additions and 6 deletions

7
index.d.ts vendored
View File

@ -1,5 +1,2 @@
const bliss: {
analyze(path: string): Promise<Uint8Array>;
analyzeSync(path: string): Uint8Array;
};
export default bliss;
export function analyzeSync(path: string): Uint8Array;
export function analyze(path: string): Promise<Uint8Array>;

View File

@ -1,6 +1,6 @@
{
"name": "@bliss-rs/bliss-rs",
"version": "0.0.3",
"version": "0.0.2",
"description": "A fork of the bliss-rs library with Node.js bindings",
"main": "index.js",
"types": "index.d.ts",