//#region src/remove-empty-items.d.ts /** * Removes empty items from an array * * @param arr - The array to remove empty items from * @returns The array with empty items removed */ declare const removeEmptyItems: (arr: (T | undefined | null)[]) => NonNullable[]; //#endregion export { removeEmptyItems }; //# sourceMappingURL=remove-empty-items.d.cts.map