postmark
Version:
Official Node.js client library for the Postmark HTTP API - https://www.postmarkapp.com
11 lines (10 loc) • 340 B
TypeScript
import { Hash } from "./SupportingTypes";
/**
* Describes default filtering parameters that can be used.
* When pagination parameters are not specified, default values are set.
*/
export declare class FilteringParameters implements Hash<any> {
count?: number;
offset?: number;
constructor(count?: number, offset?: number);
}