Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
4 lines
286 B
TypeScript
4 lines
286 B
TypeScript
export declare function isIterator(candidate: any): candidate is Iterator<any>;
|
|
export declare function isIterable(candidate: any): candidate is Iterable<any>;
|
|
export declare function toIterator<T>(collection: Iterator<T> | Iterable<T>): Iterator<T>;
|
|
//# sourceMappingURL=utils.d.ts.map
|