11 lines
453 B
TypeScript
11 lines
453 B
TypeScript
/// <reference types="react" />
|
|
import { EntityDict } from "../../../oak-app-domain";
|
|
import { WebComponentProps } from "oak-frontend-base";
|
|
export declare function registerShipSettingComponent(entity: string, component: (props: {
|
|
oakPath: string;
|
|
systemId: string;
|
|
}) => React.ReactElement): void;
|
|
export default function render(props: WebComponentProps<EntityDict, 'system', false, {
|
|
executable: boolean;
|
|
}>): import("react").JSX.Element;
|