11 lines
362 B
TypeScript
11 lines
362 B
TypeScript
import React from 'react';
|
|
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;
|
|
}, {}>): React.JSX.Element;
|