- 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
6 lines
254 B
TypeScript
6 lines
254 B
TypeScript
import { KeywordCxt } from "../../ajv";
|
|
import type { CodeKeywordDefinition } from "../../types";
|
|
declare const def: CodeKeywordDefinition;
|
|
export declare function checkMetadata({ it, keyword }: KeywordCxt, metadata?: boolean): void;
|
|
export default def;
|