oak-general-business/es/components/address/upsert/web.d.ts

14 lines
429 B
TypeScript

import React from 'react';
import { WebComponentProps } from 'oak-frontend-base';
import { EntityDict } from '../../../oak-app-domain';
export default function Render(props: WebComponentProps<EntityDict, 'address', false, {
name?: string;
phone?: string;
districtName?: string;
areaText?: string;
detail?: string;
}, {
callAreaPicker: () => void;
confirm: () => Promise<void>;
}>): React.JSX.Element;