UNPKG

@plugin-light/project-config-pixui

Version:
18 lines (17 loc) 611 B
import type { AppDef, IOptions } 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; }[]; export declare function getIfdefOptions(ifdefOptions: IOptions['ifdefOptions']): any;