436a9631fc
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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[]>;
|