10 lines
357 B
TypeScript
10 lines
357 B
TypeScript
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'station', false, {
|
|
oakId: string;
|
|
name: string;
|
|
onClose: () => void;
|
|
openStation: boolean;
|
|
subwayId: string;
|
|
}, {}>): import("react/jsx-runtime").JSX.Element;
|