import Spec from "../APIObjectKinds/Server/spec"; import APIObject from "../Interfaces/APIObject"; /** * Generates a URI, given a Server API Object. The URI will be a connection URI * for that database server. * * @param obj {APIObject} The object from whence to create the URI. * @returns {Promise} A promised object whose `uri` field is a string containing the URI of the server. */ export default function getServerURI(obj: APIObject): Promise<{ uri: string; }>; //# sourceMappingURL=getServerURI.d.ts.map