@nx/web
Version:
10 lines (9 loc) • 316 B
TypeScript
import { type Tree } from '@nx/devkit';
interface WebStaticServeSchema {
buildTarget: string;
outputPath?: string;
targetName?: string;
spa?: boolean;
}
export declare function webStaticServeGenerator(tree: Tree, options: WebStaticServeSchema): Promise<void>;
export default webStaticServeGenerator;