mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-26 10:21:55 +00:00
10 lines
324 B
TypeScript
10 lines
324 B
TypeScript
// 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 { setupAutoConfig } from "./setupAutoConfig";
|