@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
11 lines (10 loc) • 370 B
TypeScript
import { IUrlShortener, UrlShortenerResponse } from '../../../tools/share/iurlshortener.js';
export type GmfSuccessResponse = {
short_url: string;
};
declare class GmfShareManager implements IUrlShortener {
serviceUrl: string;
constructor(serviceUrl: string);
shortenUrl(longUrl: string): Promise<UrlShortenerResponse>;
}
export default GmfShareManager;