@@ -3830,6 +3830,12 @@ declare class CssLoadingRuntimeModule extends RuntimeModule {
38303830 * Runtime modules which trigger actions on bootstrap
38313831 */
38323832 static STAGE_TRIGGER : number ;
3833+
3834+ /**
3835+ * In webpack 6, call getSourceBasicTypes() directly on the module instance instead of using this static method.
3836+ * @deprecated
3837+ */
3838+ static getSourceBasicTypes ( module : Module ) : ReadonlySet < string > ;
38333839}
38343840declare interface CssLoadingRuntimeModulePluginHooks {
38353841 createStylesheet : SyncWaterfallHook < [ string , Chunk ] , string > ;
@@ -5709,6 +5715,12 @@ declare class ExternalModule extends Module {
57095715 static getExternalModuleNodeCommonjsInitFragment : (
57105716 runtimeTemplate : RuntimeTemplate
57115717 ) => InitFragment < ChunkRenderContextJavascriptModulesPlugin > ;
5718+
5719+ /**
5720+ * In webpack 6, call getSourceBasicTypes() directly on the module instance instead of using this static method.
5721+ * @deprecated
5722+ */
5723+ static getSourceBasicTypes ( module : Module ) : ReadonlySet < string > ;
57125724}
57135725declare interface ExternalModuleInfo {
57145726 type : "external" ;
@@ -6448,6 +6460,12 @@ declare class GetChunkFilenameRuntimeModule extends RuntimeModule {
64486460 * Runtime modules which trigger actions on bootstrap
64496461 */
64506462 static STAGE_TRIGGER : number ;
6463+
6464+ /**
6465+ * In webpack 6, call getSourceBasicTypes() directly on the module instance instead of using this static method.
6466+ * @deprecated
6467+ */
6468+ static getSourceBasicTypes ( module : Module ) : ReadonlySet < string > ;
64516469}
64526470declare interface GotHandler < T > {
64536471 ( result : T , callback : ( ) => void ) : void ;
@@ -8956,6 +8974,12 @@ declare class JsonpChunkLoadingRuntimeModule extends RuntimeModule {
89568974 * Runtime modules which trigger actions on bootstrap
89578975 */
89588976 static STAGE_TRIGGER : number ;
8977+
8978+ /**
8979+ * In webpack 6, call getSourceBasicTypes() directly on the module instance instead of using this static method.
8980+ * @deprecated
8981+ */
8982+ static getSourceBasicTypes ( module : Module ) : ReadonlySet < string > ;
89598983}
89608984declare interface JsonpCompilationPluginHooks {
89618985 linkPreload : SyncWaterfallHook < [ string , Chunk ] , string > ;
@@ -9920,6 +9944,12 @@ declare class LoadScriptRuntimeModule extends HelperRuntimeModule {
99209944 * Runtime modules which trigger actions on bootstrap
99219945 */
99229946 static STAGE_TRIGGER : number ;
9947+
9948+ /**
9949+ * In webpack 6, call getSourceBasicTypes() directly on the module instance instead of using this static method.
9950+ * @deprecated
9951+ */
9952+ static getSourceBasicTypes ( module : Module ) : ReadonlySet < string > ;
99239953}
99249954
99259955/**
@@ -10789,6 +10819,12 @@ declare class Module extends DependenciesBlock {
1078910819 get errors ( ) : any ;
1079010820 get warnings ( ) : any ;
1079110821 used : any ;
10822+
10823+ /**
10824+ * In webpack 6, call getSourceBasicTypes() directly on the module instance instead of using this static method.
10825+ * @deprecated
10826+ */
10827+ static getSourceBasicTypes ( module : Module ) : ReadonlySet < string > ;
1079210828}
1079310829declare class ModuleChunkLoadingRuntimeModule extends RuntimeModule {
1079410830 constructor ( runtimeRequirements : ReadonlySet < string > ) ;
@@ -10815,6 +10851,12 @@ declare class ModuleChunkLoadingRuntimeModule extends RuntimeModule {
1081510851 * Runtime modules which trigger actions on bootstrap
1081610852 */
1081710853 static STAGE_TRIGGER : number ;
10854+
10855+ /**
10856+ * In webpack 6, call getSourceBasicTypes() directly on the module instance instead of using this static method.
10857+ * @deprecated
10858+ */
10859+ static getSourceBasicTypes ( module : Module ) : ReadonlySet < string > ;
1081810860}
1081910861declare class ModuleConcatenationPlugin {
1082010862 constructor ( ) ;
@@ -11936,6 +11978,12 @@ declare class NormalModule extends Module {
1193611978 compilation : Compilation
1193711979 ) : NormalModuleCompilationHooks ;
1193811980 static deserialize ( context : ObjectDeserializerContext ) : NormalModule ;
11981+
11982+ /**
11983+ * In webpack 6, call getSourceBasicTypes() directly on the module instance instead of using this static method.
11984+ * @deprecated
11985+ */
11986+ static getSourceBasicTypes ( module : Module ) : ReadonlySet < string > ;
1193911987}
1194011988declare interface NormalModuleCompilationHooks {
1194111989 loader : SyncHook < [ AnyLoaderContext , NormalModule ] > ;
@@ -16610,6 +16658,12 @@ declare class RuntimeModule extends Module {
1661016658 * Runtime modules which trigger actions on bootstrap
1661116659 */
1661216660 static STAGE_TRIGGER : number ;
16661+
16662+ /**
16663+ * In webpack 6, call getSourceBasicTypes() directly on the module instance instead of using this static method.
16664+ * @deprecated
16665+ */
16666+ static getSourceBasicTypes ( module : Module ) : ReadonlySet < string > ;
1661316667}
1661416668declare interface RuntimeRequirementsContext {
1661516669 /**
0 commit comments