UNPKG

resig.js

Version:

Universal reactive signal library with complete platform features: signals, animations, CRDTs, scheduling, DOM integration. Works identically across React, SolidJS, Svelte, Vue, and Qwik.

10 lines (9 loc) 289 B
/** * Jest test setup - mocks for browser APIs in Node.js environment */ declare const mockFunction: () => void; declare const mockAsyncFunction: () => Promise<{}>; declare const originalConsoleError: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void; };