@stacksjs/tunnel 0.67.0 → 0.68.0
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 +4 -3
- package/dist/tunnel.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
export { localTunnel }
|
|
1
|
+
import { localTunnel } from './tunnel';
|
|
2
|
+
|
|
3
|
+
export { localTunnel }
|
|
4
|
+
export declare function createLocalTunnel(port: number): Promise<LocalTunnel>;
|
package/dist/tunnel.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type LocalTunnel = string
|
|
2
|
-
export declare function localTunnel(options?: { port: number }): Promise<LocalTunnel>;
|
|
1
|
+
export declare type LocalTunnel = string
|
|
2
|
+
export declare function localTunnel(options?: { port: number }): Promise<LocalTunnel>;
|