Move SignalProtocolStore to TypeScript

This commit is contained in:
Scott Nonnenberg 2021-02-26 15:42:45 -08:00 committed by Josh Perez
commit 7e629edd21
14 changed files with 1291 additions and 1066 deletions

View file

@ -1226,7 +1226,7 @@ async function updateUnprocessedsWithData(array: Array<UnprocessedType>) {
await channels.updateUnprocessedsWithData(array);
}
async function removeUnprocessed(id: string) {
async function removeUnprocessed(id: string | Array<string>) {
await channels.removeUnprocessed(id);
}