feat: Utils to do bindLan and have ipv4 and ipv6 if need be

This commit is contained in:
BluJ
2023-04-27 11:22:42 -06:00
parent 353692bf55
commit c7d38fc7ce
79 changed files with 1754 additions and 1744 deletions

View File

@@ -2,8 +2,8 @@
export type ReadonlyDeep<A> =
A extends Function ? A :
A extends {} ? { readonly [K in keyof A]: ReadonlyDeep<A[K]> } : A;
export type MaybePromise<A> = Promise<A> | A;
export type Message = string;
export type MaybePromise<A> = Promise<A> | A
export type Message = string
export { AutoConfig } from "./AutoConfig";
export { setupAutoConfig } from "./setupAutoConfig";
export { AutoConfig } from "./AutoConfig"
export { setupAutoConfig } from "./setupAutoConfig"