8 lines
310 B
TypeScript
8 lines
310 B
TypeScript
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../general-app-domain';
|
|
export default function render(props: WebComponentProps<EntityDict, 'mobile', true, {
|
|
mobiles?: EntityDict['mobile']['OpSchema'][];
|
|
}, {
|
|
goAddMobile: () => Promise<void>;
|
|
}>): JSX.Element;
|