11 lines
453 B
TypeScript
11 lines
453 B
TypeScript
import { EntityDict } from '../../../oak-app-domain';
|
|
import { WebComponentProps, RowWithActions } from 'oak-frontend-base';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'platform', true, {
|
|
list: RowWithActions<EntityDict, 'platform'>[];
|
|
}, {
|
|
goDetail: (id: string) => void;
|
|
goCreate: () => void;
|
|
goSetConfig: (id: string) => void;
|
|
goUpdate: (id: string) => void;
|
|
}>): import("react/jsx-runtime").JSX.Element;
|