From cba4d10fd0021032ba022c266c44784e273d7b41 Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Mon, 11 Oct 2021 21:30:40 +0200 Subject: [PATCH] Changed imports order and removed old TODO --- src/PKPass.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/PKPass.ts b/src/PKPass.ts index 434dc4d..8c8c1d8 100644 --- a/src/PKPass.ts +++ b/src/PKPass.ts @@ -1,10 +1,10 @@ import FieldsArray from "./FieldsArray"; -import { default as Bundle, filesSymbol } from "./Bundle"; -import { getModelFolderContents } from "./parser"; +import Bundle, { filesSymbol } from "./Bundle"; import * as Schemas from "./schemas"; -import { Stream } from "stream"; import * as Signature from "./Signature"; import * as Strings from "./StringsUtils"; +import { getModelFolderContents } from "./parser"; +import { Stream } from "stream"; import { isValidRGB, processDate } from "./utils"; /** Exporting for tests specs */ @@ -105,7 +105,6 @@ export default class PKPass extends Bundle { * * Throws if not all the files are instance of PKPass. * - * @TODO test autofreezing * @param passes */