chore: revert interface -> type change in channelz

This commit is contained in:
AVVS 2024-02-27 14:30:55 -08:00
parent a4a676d378
commit b8f157ed21
No known key found for this signature in database
GPG Key ID: 2B890ABACCC3E369
1 changed files with 8 additions and 8 deletions

View File

@ -330,25 +330,25 @@ export interface SocketInfo {
remoteFlowControlWindow: number | null;
}
type ChannelEntry = {
interface ChannelEntry {
ref: ChannelRef;
getInfo(): ChannelInfo;
};
}
type SubchannelEntry = {
interface SubchannelEntry {
ref: SubchannelRef;
getInfo(): SubchannelInfo;
};
}
type ServerEntry = {
interface ServerEntry {
ref: ServerRef;
getInfo(): ServerInfo;
};
}
type SocketEntry = {
interface SocketEntry {
ref: SocketRef;
getInfo(): SocketInfo;
};
}
export const enum EntityTypes {
channel = 'channel',