oak-pay-business/es/components/shipServiceSystem/list/web.pc.d.ts

14 lines
616 B
TypeScript

import React from 'react';
import { EntityDict } from "../../../oak-app-domain";
import { RowWithActions, WebComponentProps } from "oak-frontend-base";
export default function render(props: WebComponentProps<EntityDict, 'shipServiceSystem', false, {
shipServiceSystems: RowWithActions<EntityDict, 'shipServiceSystem'>[];
shipServices: EntityDict['shipService']['Schema'][];
canCreate: boolean;
searchLoading: boolean;
systemName: string;
}, {
addShipServices: (shipServiceIds: string[]) => Promise<void>;
searchShipService: (searchValue: string) => Promise<void>;
}>): React.JSX.Element;