Fix type definitions, bump version

This commit is contained in:
Anton Liaposhchenko 2023-12-28 11:28:57 +02:00
parent faec9f521d
commit eb9ca5b405
2 changed files with 6 additions and 3 deletions

7
index.d.ts vendored
View File

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

View File

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