11 lines
211 B
TypeScript
11 lines
211 B
TypeScript
/**
|
|
* @namespace values
|
|
*/
|
|
/**
|
|
* Removes all undefined values of an object
|
|
*
|
|
* @param obj - object to filter
|
|
* @returns object with no undefined values
|
|
*/
|
|
export declare function of(obj: Object): Object;
|