updates types

This commit is contained in:
Mose Müller
2024-02-20 16:38:44 +01:00
parent f0384b817c
commit 1c029e301b
4 changed files with 11 additions and 16 deletions

View File

@ -5,11 +5,12 @@ import { Button, InputGroup, Form, Collapse } from 'react-bootstrap';
import { DocStringComponent } from './DocStringComponent';
import { getIdFromFullAccessPath } from '../utils/stringUtils';
import { LevelName } from './NotificationsComponent';
import { GenericComponent, SerializedValue } from './GenericComponent';
type MethodProps = {
name: string;
parentPath: string;
parameters: Record<string, string>;
parameters: Record<string, SerializedValue>;
docString?: string;
hideOutput?: boolean;
addNotification: (message: string, levelname?: LevelName) => void;