@marceloclp/monzojs
Version:
Unofficial wrapper for the Monzo API written in TypeScript.
14 lines (13 loc) • 383 B
TypeScript
export declare type GetWebhookParams = {
/** The account to list registered webhooks for. */
accountId: string;
};
export declare type CreateWebhookParams = {
/** The account to receive notifications for. */
accountId: string;
/** The URL we will send notifications to. */
url: string;
};
export declare type DeleteWebhookParams = {
webhookId: string;
};