19 lines
590 B
TypeScript
19 lines
590 B
TypeScript
import { EntityDict } from '../../../general-app-domain';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'application', false, {
|
|
name: string;
|
|
description: string;
|
|
super: string;
|
|
variant: 'inline' | 'alone' | 'dialog';
|
|
showBack: boolean;
|
|
type: EntityDict['application']['Schema']['type'];
|
|
typeArr: Array<{
|
|
label: string;
|
|
value: EntityDict['application']['Schema']['type'];
|
|
}>;
|
|
systemId: string;
|
|
oakId: string;
|
|
}, {
|
|
confirm: () => void;
|
|
}>): JSX.Element;
|