- Add debounced state updates for title and content (500ms delay) - Immediate UI updates with delayed history saving - Prevent one-letter-per-undo issue - Add cleanup for debounce timers on unmount
11 lines
191 B
TypeScript
11 lines
191 B
TypeScript
import { GetConnInfo } from 'hono/conninfo';
|
|
|
|
/**
|
|
* ConnInfo Helper for Node.js
|
|
* @param c Context
|
|
* @returns ConnInfo
|
|
*/
|
|
declare const getConnInfo: GetConnInfo;
|
|
|
|
export { getConnInfo };
|