From 082e8b65969896c250a2b927fe14f72f038ed961 Mon Sep 17 00:00:00 2001 From: Anton Date: Thu, 28 Dec 2023 12:23:55 +0200 Subject: [PATCH] Revert "Fix type definitions, bump version" This reverts commit eb9ca5b4058e07aa3d0dcae519b126a0bb110290. --- index.d.ts | 7 ++----- package.json | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/index.d.ts b/index.d.ts index aa5ee11..fa01684 100644 --- a/index.d.ts +++ b/index.d.ts @@ -1,5 +1,2 @@ -const bliss: { - analyze(path: string): Promise; - analyzeSync(path: string): Uint8Array; -}; -export default bliss; +export function analyzeSync(path: string): Uint8Array; +export function analyze(path: string): Promise; diff --git a/package.json b/package.json index 18cf9a5..a532ae5 100644 --- a/package.json +++ b/package.json @@ -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",