UNPKG

postmark

Version:

Official Node.js client library for the Postmark HTTP API - https://www.postmarkapp.com

6 lines (5 loc) 254 B
import * as Errors from "../../errors/Errors"; /** * A standard node callback. All errors returned to this callback will be a in namespace 'PostmarkError' */ export type Callback<T> = (error: (Errors.PostmarkError | null), result: (T | null)) => void;