atlassian-webresource-webpack-plugin
Version:
Auto-generates web-resource definitions from your webpacked code, for usage in an Atlassian product or plugin.
11 lines (10 loc) • 484 B
TypeScript
import type { Compilation, Compiler } from 'webpack';
import type { AppResourceParams } from './AppResources';
import AppResources from './AppResources';
declare type AppResourcesFactoryParams = Omit<AppResourceParams, 'compiler' | 'compilation'>;
export default class AppResourceFactory {
private appResourcesFactoryParams;
constructor(appResourcesFactoryParams: AppResourcesFactoryParams);
build(compiler: Compiler, compilation: Compilation): AppResources;
}
export {};