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>
22 lines
399 B
TypeScript
22 lines
399 B
TypeScript
declare function diff(
|
|
text1: string,
|
|
text2: string,
|
|
cursorPos?: number | diff.CursorInfo,
|
|
cleanup?: boolean
|
|
): diff.Diff[];
|
|
|
|
declare namespace diff {
|
|
type Diff = [-1 | 0 | 1, string];
|
|
|
|
const DELETE: -1;
|
|
const INSERT: 1;
|
|
const EQUAL: 0;
|
|
|
|
interface CursorInfo {
|
|
oldRange: { index: number; length: number };
|
|
newRange: { index: number; length: number };
|
|
}
|
|
}
|
|
|
|
export = diff;
|