@@ -253,7 +253,7 @@ export declare class JsModule {
253
253
get resourceResolveData ( ) : JsResourceData | undefined
254
254
get matchResource ( ) : string | undefined
255
255
emitFile ( filename : string , source : JsCompatSource , assetInfo : JsAssetInfo ) : void
256
- buildInfo ( ) : object
256
+ get buildInfo ( ) : Record < string , any >
257
257
}
258
258
259
259
export declare class JsModuleGraph {
@@ -280,7 +280,7 @@ export declare class JsModuleGraphConnection {
280
280
281
281
export declare class JsResolver {
282
282
resolveSync ( path : string , request : string ) : string | false
283
- withOptions ( JsResolver ) : JsResolverWrapper
283
+ withOptions ( raw ?: RawResolveOptionsWithDependencyType | undefined | null ) : JsResolver
284
284
}
285
285
286
286
export declare class JsResolverFactory {
@@ -380,7 +380,8 @@ export declare enum BuiltinPluginName {
380
380
RsdoctorPlugin = 'RsdoctorPlugin' ,
381
381
JsLoaderRspackPlugin = 'JsLoaderRspackPlugin' ,
382
382
LazyCompilationPlugin = 'LazyCompilationPlugin' ,
383
- SubresourceIntegrityPlugin = 'SubresourceIntegrityPlugin'
383
+ SubresourceIntegrityPlugin = 'SubresourceIntegrityPlugin' ,
384
+ FlightClientEntryPlugin = 'FlightClientEntryPlugin'
384
385
}
385
386
386
387
export declare function cleanupGlobalTrace ( ) : void
@@ -392,6 +393,11 @@ export interface ContextInfo {
392
393
393
394
export declare function formatDiagnostic ( diagnostic : JsDiagnostic ) : ExternalObject < 'Diagnostic' >
394
395
396
+ export interface JsAction {
397
+ workers : Record < string , JsModuleInfo >
398
+ layer : Record < string , string >
399
+ }
400
+
395
401
export interface JsAddingRuntimeModule {
396
402
name : string
397
403
generator : ( ) => String
@@ -685,7 +691,7 @@ export interface JsExternalItemFnCtx {
685
691
context : string
686
692
dependencyType : string
687
693
contextInfo : ContextInfo
688
- resolver : JsResolverWrapper
694
+ resolver : JsResolver
689
695
}
690
696
691
697
export interface JsFactorizeArgs {
@@ -698,6 +704,18 @@ export interface JsFactoryMeta {
698
704
sideEffectFree ?: boolean
699
705
}
700
706
707
+ export interface JsFlightClientEntryPluginState {
708
+ serverActions : Record < string , JsAction >
709
+ edgeServerActions : Record < string , JsAction >
710
+ serverActionModules : Record < string , JsModulePair >
711
+ edgeServerActionModules : Record < string , JsModulePair >
712
+ ssrModules : Record < string , JsModuleInfo >
713
+ edgeSsrModules : Record < string , JsModuleInfo >
714
+ rscModules : Record < string , JsModuleInfo >
715
+ edgeRscModules : Record < string , JsModuleInfo >
716
+ injectedClientEntries : Record < string , string >
717
+ }
718
+
701
719
export interface JsHtmlPluginAssets {
702
720
publicPath : string
703
721
js : Array < string >
@@ -806,6 +824,16 @@ export interface JsModuleDescriptor {
806
824
id ?: string
807
825
}
808
826
827
+ export interface JsModuleInfo {
828
+ moduleId : string
829
+ isAsync : boolean
830
+ }
831
+
832
+ export interface JsModulePair {
833
+ server ?: JsModuleInfo
834
+ client ?: JsModuleInfo
835
+ }
836
+
809
837
export interface JsNormalModuleFactoryCreateModuleArgs {
810
838
dependencyType : string
811
839
rawRequest : string
@@ -1054,6 +1082,13 @@ export interface JsRuntimeRequirementInTreeResult {
1054
1082
runtimeRequirements : JsRuntimeGlobals
1055
1083
}
1056
1084
1085
+ export interface JsShouldInvalidateCbCtx {
1086
+ entryName : string
1087
+ absolutePagePath : string
1088
+ bundlePath : string
1089
+ clientBrowserLoader : string
1090
+ }
1091
+
1057
1092
export interface JsStatsAsset {
1058
1093
type : string
1059
1094
name : string
@@ -1666,6 +1701,17 @@ export interface RawFlagAllModulesAsUsedPluginOptions {
1666
1701
explanation : string
1667
1702
}
1668
1703
1704
+ export interface RawFlightClientEntryPluginOptions {
1705
+ dev : boolean
1706
+ appDir : string
1707
+ isEdgeServer : boolean
1708
+ encryptionKey : string
1709
+ builtinAppLoader : boolean
1710
+ shouldInvalidateCb : ( ctx : JsShouldInvalidateCbCtx ) => boolean
1711
+ invalidateCb : ( ) => void
1712
+ stateCb : ( state : JsFlightClientEntryPluginState ) => void
1713
+ }
1714
+
1669
1715
export interface RawFuncUseCtx {
1670
1716
resource ?: string
1671
1717
realResource ?: string
0 commit comments