UNPKG

@geogirafe/lib-geoportal

Version:

GeoGirafe is a flexible application to build online geoportals.

9 lines (8 loc) 228 B
export type UrlShortenerResponse = { success: boolean; shorturl: string; qrcode?: string; }; export interface IUrlShortener { shortenUrl(longUrl: string, indexDocument?: string): Promise<UrlShortenerResponse>; }