minishouyin/node_modules/@rc-component/mutate-observer/es/interface.d.ts

7 lines
224 B
TypeScript
Raw Normal View History

2025-11-12 11:35:57 +08:00
/// <reference types="react" />
export interface MutationObserverProps {
children: React.ReactNode;
options?: MutationObserverInit;
onMutate?: (mutations: MutationRecord[], observer: MutationObserver) => void;
}