Skip to content
Snippets Groups Projects
Commit 3af6f36a authored by Igor Markin's avatar Igor Markin
Browse files

Export attachments types

parent 4dde7059
No related branches found
No related tags found
1 merge request!44Implement a new signature/verification algorithm with severity level
......@@ -2,15 +2,16 @@ import { describe, it, expect, beforeAll } from "@jest/globals";
import { JSDOM } from "jsdom";
import SigningService from "../src/services/SigningService";
import { EMAIL_VENDORS } from "../src/services/StatusesService";
import { arrayBufferToBase64, CryptoService } from "../src";
import { SEVERITY_LEVELS } from "../src/services/SigningService/severityLevels";
import {
AttachmentData,
arrayBufferToBase64,
CryptoService,
AttachmentsSignatures,
} from "../src/services/SigningService/types";
AttachmentData,
} from "../src";
import { SEVERITY_LEVELS } from "../src/services/SigningService/severityLevels";
describe("SigningService tests", () => {
let signingService;
let signingService: SigningService;
let publicKeyPEM;
let privateKeyPEM;
......
export * from "./types";
export * from "./services/SigningService/types";
export * from "./utils/common";
export { default as CloudflareService } from "./services/CloudflareService";
export { default as VerificationService } from "./services/VerificationService";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment