File tree Expand file tree Collapse file tree 1 file changed +1
-10
lines changed Expand file tree Collapse file tree 1 file changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ import type {
8
8
Plugin as RollupPlugin ,
9
9
PluginContext as RollupPluginContext ,
10
10
TransformPluginContext as RollupTransformPluginContext ,
11
- SourceMap ,
12
11
TransformResult ,
13
12
} from 'rolldown'
14
13
import type {
@@ -62,11 +61,6 @@ export interface PluginContextExtension {
62
61
environment : Environment
63
62
}
64
63
65
- export interface TransformPluginContextExtension {
66
- // TODO: rolldown does not support this yet: https://github.com/rolldown/rolldown/pull/1121, https://github.com/rolldown/rolldown/pull/1426
67
- getCombinedSourcemap : ( ) => SourceMap
68
- }
69
-
70
64
export interface HotUpdatePluginContext {
71
65
environment : DevEnvironment
72
66
}
@@ -85,14 +79,11 @@ export interface ResolveIdPluginContext
85
79
86
80
export interface TransformPluginContext
87
81
extends RollupTransformPluginContext ,
88
- PluginContextExtension ,
89
- TransformPluginContextExtension { }
82
+ PluginContextExtension { }
90
83
91
84
// Argument Rollup types to have the PluginContextExtension
92
85
declare module 'rolldown' {
93
86
export interface MinimalPluginContext extends PluginContextExtension { }
94
- export interface TransformPluginContext
95
- extends TransformPluginContextExtension { }
96
87
}
97
88
98
89
/**
You can’t perform that action at this time.
0 commit comments