UNPKG

262 BTypeScriptView Raw
1import * as Errors from "../../errors/Errors";
2/**
3 * A standard node callback. All errors returned to this callback will be a in namespace 'PostmarkError'
4 */
5export declare type Callback<T> = (error: (Errors.PostmarkError | null), result: (T | null)) => void;