oak-general-business/lib/components/config/upsert/account/index.d.ts

7 lines
256 B
TypeScript

import { Config } from '../../../../types/Config';
export default function Account(props: {
account: Required<Config>['Account'];
setValue: (path: string, value: any) => void;
removeItem: (path: string, index: number) => void;
}): JSX.Element;