UNPKG

paystack-nestjs

Version:

A library for integrating Paystack with NestJS. Supports webhooks

7 lines (6 loc) 191 B
export declare type JSONValue = string | number | boolean | JSONObject | JSONArray; interface JSONObject { [x: string]: JSONValue; } declare type JSONArray = Array<JSONValue>; export {};