@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
10 lines (9 loc) • 470 B
TypeScript
import UrlManager from '../../../tools/url/urlmanager.js';
import { IUrlShortener, UrlShortenerResponse } from '../../../tools/share/iurlshortener.js';
declare class GeoGirafeShareManager implements IUrlShortener {
private readonly serviceUrl;
private readonly urlManager;
constructor(serviceUrl: string, urlManager: UrlManager);
shortenUrl(longUrl: string, forcedBaseUrl?: string): Promise<UrlShortenerResponse>;
}
export default GeoGirafeShareManager;