16 lines
764 B
TypeScript
16 lines
764 B
TypeScript
import React from 'react';
|
|
import { RowWithActions, WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict as BaseEntityDict } from 'oak-domain/lib/types/Entity';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export declare function registerPayChannelComponent<ED extends EntityDict & BaseEntityDict, T extends keyof ED>(entity: T, component: (option: {
|
|
oakPath: string;
|
|
systemId: string;
|
|
}) => React.ReactElement): void;
|
|
export default function render(props: WebComponentProps<EntityDict, 'system', false, {
|
|
system: RowWithActions<EntityDict, 'system'>;
|
|
operation?: EntityDict['system']['Update'];
|
|
serverUrl?: string;
|
|
canUpdate?: boolean;
|
|
oakExecutable: boolean;
|
|
}>): import("react/jsx-runtime").JSX.Element | null;
|