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.
24 lines
997 B
24 lines
997 B
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
import { analytics, experimental, json, logging } from '@angular-devkit/core';
|
|
import { BuilderRun, Target } from './api';
|
|
export declare function scheduleByName(name: string, buildOptions: json.JsonObject, options: {
|
|
target?: Target;
|
|
scheduler: experimental.jobs.Scheduler;
|
|
logger: logging.LoggerApi;
|
|
workspaceRoot: string | Promise<string>;
|
|
currentDirectory: string | Promise<string>;
|
|
analytics?: analytics.Analytics;
|
|
}): Promise<BuilderRun>;
|
|
export declare function scheduleByTarget(target: Target, overrides: json.JsonObject, options: {
|
|
scheduler: experimental.jobs.Scheduler;
|
|
logger: logging.LoggerApi;
|
|
workspaceRoot: string | Promise<string>;
|
|
currentDirectory: string | Promise<string>;
|
|
analytics?: analytics.Analytics;
|
|
}): Promise<BuilderRun>;
|