9 lines
372 B
TypeScript
9 lines
372 B
TypeScript
import React from 'react';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function render(props: WebComponentProps<EntityDict, 'application', true, {
|
|
applications: EntityDict['application']['OpSchema'][];
|
|
systemId: string;
|
|
oakExecutable: boolean;
|
|
}>): React.JSX.Element | undefined;
|