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

7 lines
224 B
TypeScript
Raw Normal View History

2024-08-20 23:25:37 +04:00
/// <reference types="react" />
export interface MutationObserverProps {
children: React.ReactNode;
options?: MutationObserverInit;
onMutate?: (mutations: MutationRecord[], observer: MutationObserver) => void;
}