19 lines
696 B
TypeScript
19 lines
696 B
TypeScript
import React from 'react';
|
|
import { RowWithActions, WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
/**
|
|
*
|
|
* @param channel [label, value]
|
|
*/
|
|
export declare function registerSystemPayChannel(channel: [string, string]): void;
|
|
/**
|
|
*
|
|
* @param type
|
|
* @param channel [label, value]
|
|
*/
|
|
export declare function registerApplicationPayChannel(type: EntityDict['application']['OpSchema']['type'], channel: [string, string]): void;
|
|
export default function render(props: WebComponentProps<EntityDict, 'system', false, {
|
|
system: RowWithActions<EntityDict, 'system'>;
|
|
operation?: EntityDict['system']['Update'];
|
|
}>): React.JSX.Element | null;
|