unis_crm/frontend1/node_modules/@rc-component/mutate-observer/lib/interface.d.ts

7 lines
224 B
TypeScript
Raw Normal View History

2026-03-26 09:29:55 +00:00
/// <reference types="react" />
export interface MutationObserverProps {
children: React.ReactNode;
options?: MutationObserverInit;
onMutate?: (mutations: MutationRecord[], observer: MutationObserver) => void;
}