@@ -72,8 +72,6 @@ interface PropagationBoundary {
72
72
export interface HotChannelClient {
73
73
send ( payload : HotPayload ) : void
74
74
}
75
- /** @deprecated use `HotChannelClient` instead */
76
- export type HMRBroadcasterClient = HotChannelClient
77
75
78
76
export type HotChannelListener < T extends string = string > = (
79
77
data : InferCustomEventPayload < T > ,
@@ -105,8 +103,6 @@ export interface HotChannel<Api = any> {
105
103
106
104
api ?: Api
107
105
}
108
- /** @deprecated use `HotChannel` instead */
109
- export type HMRChannel = HotChannel
110
106
111
107
export function getShortName ( file : string , root : string ) : string {
112
108
return file . startsWith ( withTrailingSlash ( root ) )
@@ -1116,8 +1112,6 @@ export type ServerHotChannelApi = {
1116
1112
export type ServerHotChannel = HotChannel < ServerHotChannelApi >
1117
1113
export type NormalizedServerHotChannel =
1118
1114
NormalizedHotChannel < ServerHotChannelApi >
1119
- /** @deprecated use `ServerHotChannel` instead */
1120
- export type ServerHMRChannel = ServerHotChannel
1121
1115
1122
1116
export function createServerHotChannel ( ) : ServerHotChannel {
1123
1117
const innerEmitter = new EventEmitter ( )
@@ -1157,8 +1151,6 @@ export interface HotBroadcaster extends NormalizedHotChannel {
1157
1151
addChannel ( channel : HotChannel ) : HotBroadcaster
1158
1152
close ( ) : Promise < unknown [ ] >
1159
1153
}
1160
- /** @deprecated use `environment.hot` instead */
1161
- export type HMRBroadcaster = HotBroadcaster
1162
1154
1163
1155
export function createDeprecatedHotBroadcaster (
1164
1156
ws : NormalizedHotChannel ,
0 commit comments