12 lines
401 B
TypeScript
12 lines
401 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, 'platform', false, {
|
|
name: string;
|
|
description: string;
|
|
oldestVersion: string;
|
|
style: EntityDict['system']['Schema']['style'];
|
|
}, {
|
|
confirm: () => void;
|
|
}>): React.JSX.Element;
|