Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - 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>
28 lines
808 B
TypeScript
28 lines
808 B
TypeScript
/// <reference types="node" />
|
|
|
|
import stream from 'stream';
|
|
|
|
declare function through(
|
|
write?: null | ((data: unknown) => void),
|
|
end?: null | (() => void),
|
|
opts?: { autoDestroy?: boolean },
|
|
): through.ThroughStream;
|
|
|
|
declare namespace through {
|
|
interface ThroughStream extends Omit<NodeJS.ReadWriteStream, 'pause' | 'resume' | 'end' | 'write'> {
|
|
autoDestroy: boolean;
|
|
paused: boolean;
|
|
readable: boolean;
|
|
writable: boolean;
|
|
destroy(): ThroughStream | undefined;
|
|
end(data: unknown): ThroughStream | undefined;
|
|
pause(): ThroughStream | undefined;
|
|
push(chunk: unknown): ThroughStream;
|
|
queue(chunk: unknown): ThroughStream;
|
|
resume(): ThroughStream;
|
|
write(chunk: unknown): boolean;
|
|
}
|
|
}
|
|
|
|
export = through;
|