Last change
on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
997 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | /**
|
---|
| 2 | * @license
|
---|
| 3 | * Copyright Google LLC All Rights Reserved.
|
---|
| 4 | *
|
---|
| 5 | * Use of this source code is governed by an MIT-style license that can be
|
---|
| 6 | * found in the LICENSE file at https://angular.io/license
|
---|
| 7 | */
|
---|
| 8 | import { analytics, experimental, json, logging } from '@angular-devkit/core';
|
---|
| 9 | import { BuilderRun, Target } from './api';
|
---|
| 10 | export declare function scheduleByName(name: string, buildOptions: json.JsonObject, options: {
|
---|
| 11 | target?: Target;
|
---|
| 12 | scheduler: experimental.jobs.Scheduler;
|
---|
| 13 | logger: logging.LoggerApi;
|
---|
| 14 | workspaceRoot: string | Promise<string>;
|
---|
| 15 | currentDirectory: string | Promise<string>;
|
---|
| 16 | analytics?: analytics.Analytics;
|
---|
| 17 | }): Promise<BuilderRun>;
|
---|
| 18 | export declare function scheduleByTarget(target: Target, overrides: json.JsonObject, options: {
|
---|
| 19 | scheduler: experimental.jobs.Scheduler;
|
---|
| 20 | logger: logging.LoggerApi;
|
---|
| 21 | workspaceRoot: string | Promise<string>;
|
---|
| 22 | currentDirectory: string | Promise<string>;
|
---|
| 23 | analytics?: analytics.Analytics;
|
---|
| 24 | }): Promise<BuilderRun>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.