UNPKG

gotiny

Version:

SDK for GoTiny: A lightweight link shortener API

10 lines (9 loc) 228 B
export interface Options { extended?: boolean; } export interface ReturnObject { code: string; long: string; } declare const get: (input: string, opt?: Options) => Promise<string | ReturnObject>; export default get;