UNPKG

@plugin-light/project-config-pixui

Version:
17 lines (16 loc) 515 B
import type { AppDef } from './types'; export declare function readEnv(): void; export declare function getAppDefAndSettings(appSettingDir: string): { appDefs: AppDef[]; appSettings: Record<string, any>; }; export declare function getPlugins({ appDefs, appSettings, rootDir, isShipping, }: { appDefs: AppDef[]; appSettings: Record<string, any>; rootDir: string; isShipping: boolean; }): any[]; export declare function getRewrites(appDefs: AppDef[]): { from: RegExp; to: string; }[];