Files
ocean_project_manager/frontend/node_modules/@rc-component/mutate-observer/lib/interface.d.ts
T

7 lines
224 B
TypeScript

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