UNPKG

vue-socials

Version:

Social media share buttons and counts for Vue.js

7 lines (6 loc) 283 B
export declare type THTTPCallback<T> = (err: string | null, data: T | null) => void; /** * Simple implementation of XMLHTTPRequest. * It uses callback to prevent adding the promise polyfill. */ export default function HTTP<T>(url: string, callback: THTTPCallback<T>): void;