9 lines
293 B
TypeScript
9 lines
293 B
TypeScript
import { EntityDict } from '../../../general-app-domain';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'platform', false, {
|
|
name: string;
|
|
description: string;
|
|
}, {
|
|
confirm: () => void;
|
|
}>): JSX.Element;
|