BREAKING CHANGE(server/client): move from client only to server + client exports

This commit is contained in:
2024-06-02 15:34:19 +02:00
parent c56e732d6d
commit 7eb8a46c7c
12 changed files with 5468 additions and 3197 deletions

17
ts_server/plugins.ts Normal file
View File

@ -0,0 +1,17 @@
import fs from 'fs';
import http from 'http';
import https from 'https';
import dgram from 'dgram';
export {
fs,
http,
https,
dgram,
}
import * as dnsPacket from 'dns-packet';
export {
dnsPacket
}