UNPKG

tgui-angular

Version:

🚀 Angular UI library for Telegram Web Apps with modern components and theming support | 💼 Author is open to work opportunities | 📧 Contact: a.blagovestnov@gmail.com | 💬 Telegram: @ablagovestnov

8 lines (7 loc) • 266 B
/** * Creates chunks of the given array with specified size * @param array The array to create chunks from * @param chunkSize The size of each chunk * @returns An array of chunks */ export declare function createChunks<T>(array: T[], chunkSize: number): T[][];