Last change
on this file was e29cc2e, checked in by Ema <ema_spirova@…>, 3 years ago |
primeNG components
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
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 |
|
---|
| 9 | declare module 'babel-loader' {
|
---|
[e29cc2e] | 10 | type BabelLoaderCustomizer<T> = (babel: typeof import('@babel/core')) => {
|
---|
[6a3a178] | 11 | customOptions?(
|
---|
| 12 | this: import('webpack').loader.LoaderContext,
|
---|
| 13 | loaderOptions: Record<string, unknown>,
|
---|
| 14 | loaderArguments: { source: string; map?: unknown },
|
---|
| 15 | ): Promise<{ custom?: T; loader: Record<string, unknown> }>;
|
---|
| 16 | config?(
|
---|
| 17 | this: import('webpack').loader.LoaderContext,
|
---|
| 18 | configuration: import('@babel/core').PartialConfig,
|
---|
| 19 | loaderArguments: { source: string; map?: unknown; customOptions: T },
|
---|
| 20 | ): import('@babel/core').TransformOptions;
|
---|
[e29cc2e] | 21 | result?(
|
---|
| 22 | this: import('webpack').loader.LoaderContext,
|
---|
| 23 | result: import('@babel/core').BabelFileResult,
|
---|
| 24 | context: {
|
---|
| 25 | source: string;
|
---|
| 26 | map?: unknown;
|
---|
| 27 | customOptions: T;
|
---|
| 28 | configuration: import('@babel/core').PartialConfig;
|
---|
| 29 | options: import('@babel/core').TransformOptions;
|
---|
| 30 | },
|
---|
| 31 | ): import('@babel/core').BabelFileResult;
|
---|
[6a3a178] | 32 | };
|
---|
| 33 | function custom<T>(customizer: BabelLoaderCustomizer<T>): import('webpack').loader.Loader;
|
---|
| 34 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.