mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 23:08:01 +00:00
6 lines
169 B
TypeScript
6 lines
169 B
TypeScript
/**
|
|
* @name objectClear
|
|
* @summary Removes all the keys from the input object
|
|
*/
|
|
export declare function objectClear<T>(value: Record<string, T>): Record<string, T>;
|