svelte-simple-form
Version:
A lightweight, **type-safe**, and **reactive** form state management hook for **Svelte 5**, featuring:
5 lines (4 loc) • 301 B
TypeScript
export declare function checkPath(obj: any, path: string): boolean;
export declare function getByPath(obj: any, path: string): any;
export declare function setByPath(obj: any, path: string, value: any): void;
export declare function getChangedPaths(obj1: any, obj2: any, basePath?: string): string[];