UNPKG

504 BTypeScriptView Raw
1#!/usr/bin/env node
2/**
3 * @license
4 * Copyright Google LLC All Rights Reserved.
5 *
6 * Use of this source code is governed by an MIT-style license that can be
7 * found in the LICENSE file at https://angular.io/license
8 */
9import 'symbol-observable';
10import { ProcessOutput } from '@angular-devkit/core/node';
11export interface MainOptions {
12 args: string[];
13 stdout?: ProcessOutput;
14 stderr?: ProcessOutput;
15}
16export declare function main({ args, stdout, stderr, }: MainOptions): Promise<0 | 1>;