14 lines
465 B
TypeScript
14 lines
465 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, 'article', false, {
|
|
content?: string;
|
|
tocPosition: 'none' | 'left' | 'right';
|
|
highlightBgColor: string;
|
|
headerTop: number;
|
|
className?: string;
|
|
tocFixed: boolean;
|
|
tocClosed: boolean;
|
|
scrollId?: string;
|
|
}, {}>): React.JSX.Element;
|