Files
video-gen/video-gen-admin/node_modules/@rc-component/mutate-observer/es/interface.d.ts
T
2026-05-25 17:08:18 +08:00

7 lines
224 B
TypeScript

/// <reference types="react" />
export interface MutationObserverProps {
children: React.ReactNode;
options?: MutationObserverInit;
onMutate?: (mutations: MutationRecord[], observer: MutationObserver) => void;
}