UNPKG

@adapty/capacitor

Version:
7 lines (6 loc) 296 B
/** * Removes undefined properties from an object, preserving the original type structure * @param obj - Source object with potentially undefined values * @returns Object with undefined values filtered out */ export declare function filterUndefined<T extends Record<string, any>>(obj: T): T;