Files
memecoin-botV2/.pnpm-store/v10/files/19/5a513fb7b2a387b132bbea23e5dc08e26bc9cc449c8503a9649e744482659c59f3ab1dfd8f97eceb6ff58e5b9e3556ace5f3222a2903ceaf8ebef48b5d5a58

4 lines
451 B
Plaintext

export declare function objectForEachKey<T extends Record<string, unknown>>(obj: T, callback: (key: keyof T) => void): void;
export declare function objectMapKey<T extends Record<string, unknown>, Return>(obj: T, callback: (key: keyof T) => Return): Return[];
export declare function objectReduceKey<T extends Record<string, unknown>, Accumulator>(obj: T, callback: (acc: Accumulator, key: keyof T) => Accumulator, initial: Accumulator): Accumulator;