UNPKG

expand-short-url

Version:

This library is designed to expand short URLs for Node.JS

7 lines (6 loc) 260 B
import { RequestOptions } from 'https'; export interface IExpandShortUrlOptions extends RequestOptions { timeout: number; maxRedirects: number; } export declare const expand: (url: string, options?: Partial<IExpandShortUrlOptions>) => Promise<string>;