From 4a79b81f99be4dfa63e881134d6201c3d432960e Mon Sep 17 00:00:00 2001 From: Kimmo Saari Date: Wed, 15 Sep 2021 18:59:47 +0300 Subject: [PATCH] fix: remove obsolete exports from types --- src/types/index.d.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/types/index.d.ts b/src/types/index.d.ts index 4c11022..655d062 100644 --- a/src/types/index.d.ts +++ b/src/types/index.d.ts @@ -17,15 +17,9 @@ declare module 'ruuvitag-parser' { export namespace formats_2_and_4 { function parse(data: Buffer): ParsedFormatV2 | ParsedFormatV4 } - export namespace format_2 { - function parse(data: Buffer): ParsedFormatV2 - } export namespace format_3 { function parse(data: string | Buffer): ParsedFormatV3 } - export namespace format_4 { - function parse(data: Buffer): ParsedFormatV4 - } export namespace format_5 { function parse(data: string | Buffer): ParsedFormatV5 }