add this missing thing

This commit is contained in:
ITOH
2021-04-12 22:46:02 +02:00
parent 957af6d046
commit 495ad593ea

View File

@@ -70,6 +70,16 @@ export async function editChannel(
return result;
}
interface EditChannelRequest {
amount: number;
timestamp: number;
channelId: string;
items: {
channelId: string;
options: ModifyChannel;
}[];
}
const editChannelNameTopicQueue = new Map<string, EditChannelRequest>();
let editChannelProcessing = false;