oak-general-business/es/components/platform/panel/web.pc.d.ts

12 lines
422 B
TypeScript

import React from 'react';
import { WebComponentProps } from 'oak-frontend-base';
import { EntityDict } from '../../../oak-app-domain';
import { Style } from '../../../types/Style';
import { Config } from '../../../types/Config';
export default function render(props: WebComponentProps<EntityDict, 'platform', false, {
id: string;
name: string;
config: Config;
style: Style;
}>): React.JSX.Element | null;