UNPKG

everything-dev

Version:

A consolidated product package for building Module Federation apps with oRPC APIs.

10 lines 773 B
import { BosConfigInput, ExtendsConfig } from "./types.mjs"; //#region src/merge.d.ts declare const BOS_CONFIG_ORDER: readonly ["extends", "account", "domain", "title", "description", "testnet", "staging", "repository", "app", "plugins", "shared"]; type BosEnv = "development" | "production" | "staging"; declare function resolveExtendsRef(extendsField: string | ExtendsConfig | undefined, env: BosEnv): string | undefined; declare function mergeBosConfigWithExtends(parent: BosConfigInput, child: BosConfigInput): BosConfigInput; declare function rebuildOrderedConfig<T extends Record<string, unknown>>(config: T): T; //#endregion export { BOS_CONFIG_ORDER, BosEnv, mergeBosConfigWithExtends, rebuildOrderedConfig, resolveExtendsRef }; //# sourceMappingURL=merge.d.mts.map