webpack/declarations/plugins/ContainerReferencePlugin.d.ts

29 lines
530 B
TypeScript
Raw Normal View History

2020-02-27 04:14:49 +08:00
/**
* This file was automatically generated.
* DO NOT MODIFY BY HAND.
* Run `yarn special-lint-fix` to update
*/
2020-04-14 18:51:49 +08:00
export interface ContainerReferencePlugin {
2020-02-27 04:14:49 +08:00
/**
2020-03-18 17:01:20 +08:00
* A list of requests that should be overridable by the host container.
2020-02-27 04:14:49 +08:00
*/
overrides?:
| any[]
| {
[k: string]: any;
};
/**
2020-03-18 17:01:20 +08:00
* The libraryTarget of a remote build.
2020-02-27 04:14:49 +08:00
*/
remoteType?: string;
/**
2020-03-18 17:01:20 +08:00
* A list of remote scopes or namespaces that reference federated Webpack instances.
2020-02-27 04:14:49 +08:00
*/
remotes?:
| any[]
| {
[k: string]: any;
};
2020-04-14 18:51:49 +08:00
}