@based/opts
Advanced tools
Comparing version 0.0.2 to 0.0.3
import { BasedConnectOpts } from './types'; | ||
declare const _default: (opts: BasedConnectOpts) => Promise<string>; | ||
declare const _default: (opts: BasedConnectOpts, http?: boolean) => Promise<string>; | ||
export default _default; | ||
export * from './types'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -21,6 +21,6 @@ "use strict"; | ||
const getUrlFromOpts_1 = __importDefault(require("./getUrlFromOpts")); | ||
exports.default = async (opts) => { | ||
return (0, getUrlFromOpts_1.default)(opts); | ||
exports.default = async (opts, http) => { | ||
return (0, getUrlFromOpts_1.default)(opts, http); | ||
}; | ||
__exportStar(require("./types"), exports); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@based/opts", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"main": "dist/index.js", | ||
@@ -5,0 +5,0 @@ "public": true, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
9498