mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-30 20:24:47 +00:00
feat: Create the autoconfigure
This commit is contained in:
9
lib/autoconfig/index.ts
Normal file
9
lib/autoconfig/index.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
// prettier-ignore
|
||||
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 { AutoConfig } from "./AutoConfig";
|
||||
export { autoconfigSetup } from "./autoconfigSetup";
|
||||
Reference in New Issue
Block a user