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>
11 lines
592 B
TypeScript
11 lines
592 B
TypeScript
import type { imageType } from './types/index';
|
|
import type { ISizeCalculationResult } from './types/interface';
|
|
type CallbackFn = (e: Error | null, r?: ISizeCalculationResult) => void;
|
|
export default imageSize;
|
|
export declare function imageSize(input: Uint8Array | string): ISizeCalculationResult;
|
|
export declare function imageSize(input: string, callback: CallbackFn): void;
|
|
export declare const disableFS: (v: boolean) => void;
|
|
export declare const disableTypes: (types: imageType[]) => void;
|
|
export declare const setConcurrency: (c: number) => void;
|
|
export declare const types: string[];
|