14 lines
518 B
TypeScript
14 lines
518 B
TypeScript
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function render(props: WebComponentProps<EntityDict, 'address', true, {
|
|
placement: 'top' | 'bottom' | 'left' | 'right';
|
|
style: Record<string, any>;
|
|
}, {
|
|
printDebugStore: () => void;
|
|
printCachedStore: () => void;
|
|
printRunningTree: () => void;
|
|
resetInitialData: () => void;
|
|
downloadEnv: () => void;
|
|
resetEnv: (data: Record<string, any>) => void;
|
|
}>): JSX.Element;
|