Changed imports order and removed old TODO

This commit is contained in:
Alexander Cerutti
2021-10-11 21:30:40 +02:00
parent 09debb1e3f
commit cba4d10fd0

View File

@@ -1,10 +1,10 @@
import FieldsArray from "./FieldsArray"; import FieldsArray from "./FieldsArray";
import { default as Bundle, filesSymbol } from "./Bundle"; import Bundle, { filesSymbol } from "./Bundle";
import { getModelFolderContents } from "./parser";
import * as Schemas from "./schemas"; import * as Schemas from "./schemas";
import { Stream } from "stream";
import * as Signature from "./Signature"; import * as Signature from "./Signature";
import * as Strings from "./StringsUtils"; import * as Strings from "./StringsUtils";
import { getModelFolderContents } from "./parser";
import { Stream } from "stream";
import { isValidRGB, processDate } from "./utils"; import { isValidRGB, processDate } from "./utils";
/** Exporting for tests specs */ /** Exporting for tests specs */
@@ -105,7 +105,6 @@ export default class PKPass extends Bundle {
* *
* Throws if not all the files are instance of PKPass. * Throws if not all the files are instance of PKPass.
* *
* @TODO test autofreezing
* @param passes * @param passes
*/ */