13 lines
478 B
TypeScript
13 lines
478 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, 'subscription', true, {
|
|
list: EntityDict['subscription']['Schema'][];
|
|
}, {
|
|
goDetail: (id: string) => void;
|
|
goCreate: () => void;
|
|
goSetConfig: (id: string) => void;
|
|
goUpdate: (id: string) => void;
|
|
remove: (id: string) => void;
|
|
}>): React.JSX.Element;
|