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