UNPKG

dmarc-solution

Version:

One stop solution for all DMARC Problems. This package includes fetching of dmarc record, parsing the provided/fetched record, validation of DMARC record, generating a new DMARC record

5 lines (4 loc) 316 B
import { FetchOptions, FetchResponse } from "./bin/declare"; export declare const parse: (dmarcRecord: string) => Promise<any>; export declare const fetch: (domainName: string, options?: FetchOptions) => Promise<FetchResponse>; export declare const generate: (values: import("./bin/declare").DMARCRecord) => string;