oak-general-business/es/components/subscription/list/web.pc.d.ts

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;