UNPKG

atlassian-webresource-webpack-plugin

Version:

Auto-generates web-resource definitions from your webpacked code, for usage in an Atlassian product or plugin.

10 lines (9 loc) 359 B
import type { Compiler } from 'webpack'; import type AppResourceFactory from './AppResourcesFactory'; export default class WrmManifestPlugin { private appResourcesFactory; private outputPath; private pluginKey; constructor(appResourcesFactory: AppResourceFactory, outputPath: string, pluginKey: string); apply(compiler: Compiler): void; }