@sanity/form-builder
Version:
Sanity form builder
21 lines • 517 B
TypeScript
import React from 'react';
import { Path } from '@sanity/types';
declare type Props = {
path: any | null;
onFocus: () => {};
onBlur: () => {};
children: (arg: any) => any;
};
declare type State = {
focusPath: Array<any>;
};
export default class SimpleFocusManager extends React.Component<Props, State> {
state: {
focusPath: any[];
};
handleFocus: (path: Path) => void;
handleBlur: () => void;
render(): any;
}
export {};
//# sourceMappingURL=SimpleFocusManager.d.ts.map