botbook/node_modules/@sagold/json-pointer/dist/lib/removeUndefinedItems.d.ts

6 lines
178 B
TypeScript
Raw Normal View History

2024-09-04 13:13:15 -03:00
/**
* Removes all `undefined` values within an array without creating additional
* arrays
*/
export declare function removeUndefinedItems<T = any>(array: Array<T>): Array<T>;