Upgrade to React 18

This commit is contained in:
Jamie Kyle
2025-04-29 13:27:33 -07:00
committed by GitHub
parent 560dcb91d9
commit 14d098f40f
46 changed files with 1210 additions and 1796 deletions

View File

@@ -1,10 +1,10 @@
// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
export function objectMap<T>(
export function objectMap<T, R>(
obj: Record<string, T>,
f: (key: keyof typeof obj, value: (typeof obj)[keyof typeof obj]) => unknown
): Array<unknown> {
f: (key: keyof typeof obj, value: (typeof obj)[keyof typeof obj]) => R
): Array<R> {
const keys: Array<keyof typeof obj> = Object.keys(obj);
return keys.map(key => f(key, obj[key]));
}