mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-08 15:22:43 +08:00
6 lines
218 B
TypeScript
6 lines
218 B
TypeScript
import { PackagerOptions } from "./packagerApi";
|
|
export interface ForgeOptions {
|
|
readonly dir: string;
|
|
}
|
|
export declare function buildForge(forgeOptions: ForgeOptions, options: PackagerOptions): Promise<string[]>;
|