From eb72eb36b0b7e958b07dca3ede986a3cd67c9ff7 Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Sat, 16 Oct 2021 15:15:35 +0200 Subject: [PATCH] Added types to be exported when using package and removed Bundle --- src/index.ts | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 9627192..2455b72 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,2 +1,17 @@ -export { default as Bundle } from "./Bundle"; export { default as PKPass } from "./PKPass"; + +// ***************************************** // +// *** Exporting only schemas interfaces *** // +// ***************************************** // + +export type { + Barcode, + Beacon, + Field, + Location, + NFC, + PassProps, + Semantics, + TransitType, + Personalize, +} from "./schemas";