14 lines
616 B
TypeScript
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;
|