mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 18:19:40 +00:00
refactor: apply default vs transform to xproj
refactor(spa-services): clean code refactor(node-services): clean code, extract classes nto separate files refactor(angular-services): prime cache cleanup
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
namespace Microsoft.AspNetCore.SpaServices.Prerendering
|
||||
{
|
||||
public class JavaScriptModuleExport
|
||||
{
|
||||
public JavaScriptModuleExport(string moduleName)
|
||||
{
|
||||
this.ModuleName = moduleName;
|
||||
}
|
||||
|
||||
public string ModuleName { get; private set; }
|
||||
public string ExportName { get; set; }
|
||||
public string WebpackConfig { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user