Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
980 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 { BuilderContext } from '@angular-devkit/architect';
|
---|
| 9 | import { BuildResult } from '@angular-devkit/build-webpack';
|
---|
| 10 | import { JsonObject } from '@angular-devkit/core';
|
---|
| 11 | import webpack from 'webpack';
|
---|
| 12 | import { ExecutionTransformer } from '../transforms';
|
---|
| 13 | import { Schema } from './schema';
|
---|
| 14 | export declare type ExtractI18nBuilderOptions = Schema & JsonObject;
|
---|
| 15 | /**
|
---|
| 16 | * @experimental Direct usage of this function is considered experimental.
|
---|
| 17 | */
|
---|
| 18 | export declare function execute(options: ExtractI18nBuilderOptions, context: BuilderContext, transforms?: {
|
---|
| 19 | webpackConfiguration?: ExecutionTransformer<webpack.Configuration>;
|
---|
| 20 | }): Promise<BuildResult>;
|
---|
| 21 | declare const _default: import("@angular-devkit/architect/src/internal").Builder<JsonObject & Schema>;
|
---|
| 22 | export default _default;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.