25 lines
919 B
TypeScript
25 lines
919 B
TypeScript
import React from 'react';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'application', false, {
|
|
name: string;
|
|
description: string;
|
|
type: EntityDict['application']['Schema']['type'];
|
|
typeArr: Array<{
|
|
label: string;
|
|
value: EntityDict['application']['Schema']['type'];
|
|
}>;
|
|
systemId: string;
|
|
oakId: string;
|
|
style: EntityDict['system']['Schema']['style'];
|
|
$$createAt$$: number;
|
|
domainId: string;
|
|
domains: EntityDict['domain']['Schema'][];
|
|
dangerousVersions: EntityDict['application']['OpSchema']['dangerousVersions'];
|
|
warningVersions: EntityDict['application']['OpSchema']['warningVersions'];
|
|
soaVersion: string;
|
|
}, {
|
|
confirm: () => void;
|
|
getDomains: (systemId: string) => Promise<void>;
|
|
}>): React.JSX.Element;
|