9 lines
421 B
TypeScript
9 lines
421 B
TypeScript
/// <reference types="react" />
|
|
import { EntityDict } from "../../../oak-app-domain";
|
|
import { RowWithActions, WebComponentProps } from "oak-frontend-base";
|
|
export default function render(props: WebComponentProps<EntityDict, 'withdrawChannel', true, {
|
|
channels: RowWithActions<EntityDict, 'withdrawChannel'>[];
|
|
onUpdate: (id: string) => void;
|
|
onRemove: (id: string) => void;
|
|
}>): import("react").JSX.Element;
|