UNPKG

169 BTypeScriptView Raw
1/**
2 * @name objectClear
3 * @summary Removes all the keys from the input object
4 */
5export declare function objectClear<T>(value: Record<string, T>): Record<string, T>;