UNPKG

zalo-api

Version:

A wrapper library to help integrate with Zalo API.

9 lines (8 loc) 284 B
interface RequestOptions { params?: any; data?: any; headers?: any; } export declare const get: (url: string, options?: RequestOptions | undefined) => Promise<any>; export declare const post: (url: string, options?: RequestOptions | undefined) => Promise<any>; export {};