UNPKG

postmark

Version:

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

13 lines (12 loc) 257 B
export declare class CreateInboundRuleRequest { Rule: string; constructor(Rule: string); } export interface InboundRule { Rule: string; ID: number; } export interface InboundRules { TotalCount: number; InboundRules: InboundRule[]; }