You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
790 B

2 months ago
import { type BuildOptions, type ServerOptions } from 'vite';
import type { RollupWatcher } from 'rollup';
import type { CliOptions } from '.';
export declare function initUVueEnv(): void;
export declare function runUVueAndroidDev(options: CliOptions & ServerOptions): Promise<undefined>;
export declare function runUVueAndroidBuild(options: CliOptions & BuildOptions): Promise<void>;
/**
*
* node
* 1. .uts/android
* 2. uvue render.kt, css.kt, uts.uvue
* 3. static copy
* 4. uvuevueuts uts
* @param options
*/
export declare function buildUVue(options: CliOptions): Promise<RollupWatcher | void>;