9 lines
314 B
TypeScript
9 lines
314 B
TypeScript
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../general-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'address', true, {
|
|
addresses?: any[];
|
|
}, {
|
|
gotoUpsert: (id: string) => void;
|
|
goNewAddress: () => void;
|
|
}>): JSX.Element;
|