From 2a5e4b105254efa9b9ca20441b48c756d07b3192 Mon Sep 17 00:00:00 2001 From: maze Date: Thu, 12 Mar 2026 19:52:27 +0100 Subject: [PATCH] Export all the things --- src/index.ts | 31 +++++-------------------------- 1 file changed, 5 insertions(+), 26 deletions(-) diff --git a/src/index.ts b/src/index.ts index 2ecd0e3..85278fb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -769,29 +769,8 @@ export class Writer { } } -export { FieldType } from './types'; -export { - isBytes, - assertBytes, - equalBytes, - constantTimeEqualBytes, - bytesToHex, - hexToBytes, - bytesToBase64, - base64ToBytes, - U8, - U16, - U32, - I8, - I16, - I32, - F32, - F64, - type TypedArray, - type Encoding, - type HexEncoding, - type Base64Encoding, - type Base64RawEncoding, - type Base64URLEncoding, - type Base64RawURLEncoding, -} from './utils'; +// Exporting types and utilities for external use: +export * from './types'; +export type * from './types'; +export * from './utils'; +export type * from './utils'