From 1d3e1f9af586243e02622ebf1d659ff6bcf3b608 Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Sat, 18 Sep 2021 23:18:25 +0200 Subject: [PATCH] Fixed paths and added imports --- src/PKPass.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/PKPass.ts b/src/PKPass.ts index cf0e2fd..de5bbf4 100644 --- a/src/PKPass.ts +++ b/src/PKPass.ts @@ -1,7 +1,9 @@ -import FieldsArray from "../src/fieldsArray"; -import { Certificates } from "../src/schemas"; +import FieldsArray from "./fieldsArray"; +import { Certificates } from "./schemas"; import { default as Bundle, filesSymbol } from "./Bundle"; import { getModelFolderContents } from "./parser"; +import * as Schemas from "./schemas"; +import { Stream } from "stream"; const fieldKeysPoolSymbol = Symbol("fieldKeysPoolSymbol");