typed-bridge 2.0.4 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +3 -1
- package/dist/index.js +4 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,4 +2,6 @@ import 'dotenv/config';
|
|
|
2
2
|
export { createBridge, createMiddleware, onShutdown } from './bridge';
|
|
3
3
|
export { config as tbConfig } from './config';
|
|
4
4
|
export { default as $z } from 'zod';
|
|
5
|
-
|
|
5
|
+
import express from 'express';
|
|
6
|
+
export { express };
|
|
7
|
+
export { Application, NextFunction, Request, Response, Router } from 'express';
|
package/dist/index.js
CHANGED
|
@@ -13,6 +13,7 @@ var config_1 = require("./config");
|
|
|
13
13
|
Object.defineProperty(exports, "tbConfig", { enumerable: true, get: function () { return config_1.config; } });
|
|
14
14
|
var zod_1 = require("zod");
|
|
15
15
|
Object.defineProperty(exports, "$z", { enumerable: true, get: function () { return __importDefault(zod_1).default; } });
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
const express_1 = __importDefault(require("express"));
|
|
17
|
+
exports.express = express_1.default;
|
|
18
|
+
var express_2 = require("express");
|
|
19
|
+
Object.defineProperty(exports, "Router", { enumerable: true, get: function () { return express_2.Router; } });
|