feat: init

This commit is contained in:
2026-02-13 22:02:30 +01:00
commit 8f9ff830fb
16711 changed files with 3307340 additions and 0 deletions

27
node_modules/untun/dist/cli.d.mts generated vendored Normal file
View File

@@ -0,0 +1,27 @@
import * as citty from 'citty';
declare const tunnel: citty.CommandDef<{
url: {
type: "positional";
description: string;
required: false;
};
port: {
type: "string";
description: string;
};
hostname: {
type: "string";
description: string;
valueHint: string;
};
protocol: {
type: "string";
description: string;
valueHint: string;
};
}>;
declare const main: citty.CommandDef<citty.ArgsDef>;
declare const runMain: () => Promise<void>;
export { main, runMain, tunnel };