mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-30 12:21:57 +00:00
feat: Utils to do bindLan and have ipv4 and ipv6 if need be
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user