6 lines
236 B
TypeScript
6 lines
236 B
TypeScript
import { ConfigEnv, UserConfig } from 'vite';
|
|
export declare function buildOptions({ appService, renderer, }: {
|
|
renderer: 'native' | undefined;
|
|
appService: boolean;
|
|
}, userConfig: UserConfig, _: ConfigEnv): UserConfig['build'];
|